Home
last modified time | relevance | path

Searched refs:traces (Results 1 – 25 of 7420) sorted by relevance

12345678910>>...297

/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/celery/
H A Dtest_integration.py56 assert 1 == len(traces)
73 assert 0 == len(traces)
114 span = traces[0][0]
139 span = traces[0][0]
241 span = traces[0][0]
268 span = traces[0][0]
292 span = traces[0][0]
327 span = traces[0][0]
357 span = traces[0][0]
392 span = traces[0][0]
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/opentracer/
H A Dtest_tracer_asyncio.py20 assert len(traces) == 1
21 assert len(traces[0]) == 1
42 assert len(traces) == 1
47 assert traces[0][0] == traces[0][1]._parent
48 assert traces[0][0].trace_id == traces[0][1].trace_id
61 assert len(traces) == 1
62 spans = traces[0]
117 assert traces[0][0] == traces[0][1]._parent
118 assert traces[0][0].trace_id == traces[0][1].trace_id
146 assert traces[0][0] == traces[0][1]._parent
[all …]
H A Dtest_tracer_gevent.py49 assert len(traces) == 1
50 assert len(traces[0]) == 3
60 assert len(traces) == 1
73 assert len(traces) == 1
89 assert len(traces) == 100
138 assert len(traces) == 1
141 worker_1 = traces[0][1]
142 worker_2 = traces[0][2]
179 assert len(traces) == 1
182 worker_1 = traces[0][1]
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/aiobotocore/
H A Dtest.py30 assert len(traces) == 1
32 span = traces[0][0]
54 assert traces
55 span = traces[0][0]
68 span = traces[0][0]
114 span = traces[0][0]
144 span = traces[0][0]
173 span = traces[0][0]
192 span = traces[0][0]
212 span = traces[0][0]
[all …]
/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/
H A Dhu_tracers.c54 traceslist_t traces[NUMTRACES]; variable
78 traces[i].count = 0; in InitTracers()
86 if (traces[i].ApplyFunc) in InitTracers()
87 traces[i].ApplyFunc(i); in InitTracers()
92 traces[i].count = count; in InitTracers()
101 strcpy(traces[index].hudstr, traces[index].prefix); in TracerApply()
104 sprintf(traces[index].hudstr + strlen(traces[index].hudstr), in TracerApply()
111 if (traces[TRACE_PICKUP].count) in CheckThingsPickupTracer()
146 if (traces[TRACE_CROSS].count) in CheckLinesCrossTracer()
168 if (traces[TRACE_CROSS].count) in ClearLinesCrossTracer()
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/asyncio/
H A Dtest_propagation.py58 assert len(traces) == 1
59 spans = traces[0]
94 assert len(traces) == 1
97 child_1 = traces[0][1]
98 child_2 = traces[0][2]
125 span = traces[0][0]
143 span = traces[0][0]
171 assert traces[0][0] == traces[0][1]._parent
172 assert traces[0][0].trace_id == traces[0][1].trace_id
199 assert traces[0][0] == traces[0][1]._parent
[all …]
H A Dtest_tracer.py21 assert 1 == len(traces)
22 assert 1 == len(traces[0])
43 assert 1 == len(traces)
48 assert traces[0][0] == traces[0][1]._parent
49 assert traces[0][0].trace_id == traces[0][1].trace_id
85 assert 1 == len(traces)
86 spans = traces[0]
108 assert 1 == len(traces)
109 spans = traces[0]
140 spans = traces[0]
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/tornado/
H A Dtest_tornado_web.py32 traces = self.pop_traces()
33 assert 1 == len(traces)
34 assert 1 == len(traces[0])
36 request_span = traces[0][0]
68 assert 1 == len(traces)
85 assert 1 == len(traces)
113 assert 1 == len(traces)
135 assert 1 == len(traces)
157 assert 1 == len(traces)
179 assert 1 == len(traces)
[all …]
H A Dtest_wrap_decorator.py16 traces = self.pop_traces()
17 assert 1 == len(traces)
18 assert 2 == len(traces[0])
20 request_span = traces[0][0]
30 nested_span = traces[0][1]
42 traces = self.pop_traces()
43 assert 1 == len(traces)
73 assert 1 == len(traces)
99 assert 1 == len(traces)
129 assert 1 == len(traces)
[all …]
H A Dtest_safety.py49 traces = self.pop_traces()
51 assert 2 == len(traces[0])
67 traces = self.pop_traces()
68 assert 0 == len(traces)
79 assert 0 == len(traces)
90 assert 1 == len(traces)
99 assert 1 == len(traces)
112 assert 1 == len(traces)
133 assert 1 == len(traces)
137 span = traces[0][0]
[all …]
H A Dtest_tornado_template.py22 traces = self.pop_traces()
23 assert 1 == len(traces)
24 assert 2 == len(traces[0])
26 request_span = traces[0][0]
51 traces = self.pop_traces()
52 assert 1 == len(traces)
53 assert 1 == len(traces[0])
69 traces = self.pop_traces()
70 assert 1 == len(traces)
125 assert 1 == len(traces)
[all …]
H A Dtest_executor_decorator.py23 traces = self.pop_traces()
24 assert 1 == len(traces)
25 assert 2 == len(traces[0])
28 request_span = traces[0][0]
40 executor_span = traces[0][1]
53 traces = self.pop_traces()
54 assert 1 == len(traces)
55 assert 2 == len(traces[0])
83 assert 1 == len(traces)
119 assert 1 == len(traces)
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/aiohttp/
H A Dtest_middleware.py32 span = traces[0][0]
71 span = traces[0][0]
92 span = traces[0][0]
112 span = traces[0][0]
130 span = traces[0][0]
148 root = traces[0][0]
179 span = traces[0][0]
215 spans = traces[0]
233 spans = traces[0]
252 spans = traces[0]
[all …]
H A Dtest_templates.py19 assert 1 == len(traces)
20 assert 1 == len(traces[0])
21 span = traces[0][0]
40 assert 1 == len(traces)
42 span = traces[0][0]
62 assert 1 == len(traces)
64 span = traces[0][0]
82 assert 1 == len(traces)
84 span = traces[0][0]
101 assert 1 == len(traces)
[all …]
/dports/devel/gitlist/gitlist/vendor/symfony/routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/www/itop/web/lib/silex/vendor/symfony/routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php37 $traces = $matcher->getTraces('/babar');
40 $traces = $matcher->getTraces('/foo');
43 $traces = $matcher->getTraces('/bar/12');
46 $traces = $matcher->getTraces('/bar/dd');
49 $traces = $matcher->getTraces('/foo1');
53 $traces = $matcher->getTraces('/foo');
56 $traces = $matcher->getTraces('/bar/dd');
59 $traces = $matcher->getTraces('/foo2');
90 $this->getLevels($traces)
94 public function getLevels($traces) argument
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/gevent/
H A Dtest_tracer.py48 traces = self.pop_traces()
49 assert 1 == len(traces)
50 assert 1 == len(traces[0])
65 assert 2 == len(traces)
66 assert 1 == len(traces[0]) == len(traces[1])
93 spans = traces[0]
112 assert 1 == len(traces)
138 assert 1 == len(traces)
140 spans = traces[0]
170 assert 1 == len(traces)
[all …]
/dports/cad/gtkwave/gtkwave-3.3.107/src/
H A Danalyzer.c346 GLOBALS->traces.first = GLOBALS->traces.last = t; in AddTrace()
461 GLOBALS->traces.first=GLOBALS->traces.last=t; in InsertBlankTrace()
471 GLOBALS->traces.buffer=GLOBALS->traces.bufferlast=t; in InsertBlankTrace()
832 GLOBALS->traces.buffer=GLOBALS->traces.bufferlast=NULL; in FreeCutBuffer()
990 t=GLOBALS->traces.last=GLOBALS->traces.first=GLOBALS->traces.buffer; in PasteBuffer()
1026 GLOBALS->traces.total+=GLOBALS->traces.buffercount; in PasteBuffer()
1030 GLOBALS->traces.last=GLOBALS->traces.bufferlast; in PasteBuffer()
1037 GLOBALS->traces.scroll_top = GLOBALS->traces.buffer; in PasteBuffer()
1067 GLOBALS->traces.buffer=GLOBALS->traces.bufferlast=NULL; in PasteBuffer()
1119 GLOBALS->traces.first=GLOBALS->traces.buffer; in PrependBuffer()
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/Routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/deskutils/egroupware/egroupware/vendor/symfony/routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/vendor/symfony/routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/Routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/symfony/routing/Tests/Matcher/
H A DTraceableUrlMatcherTest.php36 $traces = $matcher->getTraces('/babar');
39 $traces = $matcher->getTraces('/foo');
42 $traces = $matcher->getTraces('/bar/12');
45 $traces = $matcher->getTraces('/bar/dd');
48 $traces = $matcher->getTraces('/foo1');
52 $traces = $matcher->getTraces('/foo');
55 $traces = $matcher->getTraces('/bar/dd');
58 $traces = $matcher->getTraces('/foo2');
89 $this->getLevels($traces)
93 public function getLevels($traces) argument
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/tests/contrib/falcon/
H A Dtest_suite.py33 assert len(traces) == 1
35 span = traces[0][0]
57 assert len(traces) == 1
59 span = traces[0][0]
77 span = traces[0][0]
167 span = traces[0][0]
185 span = traces[0][0]
202 span = traces[0][0]
220 span = traces[0][0]
271 span = traces[0][0]
[all …]
/dports/devel/grpc134/grpc-1.34.1/doc/
H A Denvironment_variables.md46 - api - traces api calls to the C core
52 - cds_lb - traces cds LB policy
60 - eds_lb - traces eds LB policy
62 - glb - traces the grpclb load balancer
63 - handshaker - traces handshaking state
70 - flowctl - traces http2 flow control
77 - priority_lb - traces priority LB policy
89 - tsi - traces tsi transport security
91 - xds_client - traces xds client
94 - xds_resolver - traces xds resolver
[all …]

12345678910>>...297