Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for span1 (0.1 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    # A note on distributed tracing:
    #
    # Although Istio proxies are able to automatically send spans, they need some
    # hints to tie together the entire trace. Applications need to propagate the
    # appropriate HTTP headers so that when the proxies send span information, the
    # spans can be correlated correctly into a single trace.
    #
    # To do this, an application needs to collect and propagate headers from the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-cli.md

     │                          │
     │  <span style="background-color:#272822"><font color="#FF4689">from</font></span><span style="background-color:#272822"><font color="#F8F8F2"> main </font></span><span style="background-color:#272822"><font color="#FF4689">import</font></span><span style="background-color:#272822"><font color="#F8F8F2"> app</font></span><span style="background-color:#272822">  </span>  │
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. docs/pt/docs/fastapi-cli.md

     │                          │
     │  <span style="background-color:#272822"><font color="#FF4689">from</font></span><span style="background-color:#272822"><font color="#F8F8F2"> main </font></span><span style="background-color:#272822"><font color="#FF4689">import</font></span><span style="background-color:#272822"><font color="#F8F8F2"> app</font></span><span style="background-color:#272822">  </span>  │
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	assert.NotEmpty(t, runtimeServiceSpans, "syncPod trace should have runtime service spans")
    
    	for _, span := range imageServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("image service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    
    	for _, span := range runtimeServiceSpans {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    					Addresses: []string{"1.2.3.4"},
    					Hosts:     []string{"a.example.com", "b.example.com"},
    					Ports: []*networking.ServicePort{{
    						Number: 80,
    						Name:   "http",
    					}},
    					SubjectAltNames: []string{"san1"},
    					Resolution:      networking.ServiceEntry_DNS,
    				},
    			},
    			result: []*workloadapi.Service{
    				{
    					Name:      "name",
    					Namespace: "ns",
    					Hostname:  "a.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	}
    	output := fakeRecorder.Ended()
    	if len(output) != 1 {
    		t.Fatalf("got %d; expected len(output) == 1", len(output))
    	}
    	span := output[0]
    	if span.Name() != filterName {
    		t.Fatalf("got %s; expected span.Name == my-filter", span.Name())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

     * </code></pre>
     */
    ```
    
    In order to label the coding language used in the multi-line snippet, you can use additional HTML, `<div class="code-block"><span class="label">Groovy</span>...</div>`:
    
    ```java
    /**
     * <div class="code-block">
     * <span class="label">Groovy</span>
     * <pre><code class="language-groovy">
     * defaultTasks('some-task')
     * reportsDir = file('reports')
     * </code></pre>
     * </div>
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. samples/bookinfo/src/details/details.rb

          # Note: this should probably be changed to use B3 or W3C TRACE_CONTEXT.
          # Lightstep recommends using B3 or TRACE_CONTEXT and most application
          # libraries from lightstep do not support x-ot-span-context.
          'x-ot-span-context',
    
          # Datadog tracing header. Propagate these headers if you use Datadog
          # tracing.
          'x-datadog-trace-id',
          'x-datadog-parent-id',
          'x-datadog-sampling-priority',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. pkg/test/framework/test.go

    	ctx *testContext
    	tc  context2.Context
    	ts  traceapi.Span
    }
    
    // NewTest returns a new test wrapper for running a single test.
    func NewTest(t *testing.T) Test {
    	rtMu.Lock()
    	defer rtMu.Unlock()
    
    	if rt == nil {
    		panic("call to scope without running the test framework")
    	}
    
    	ctx, span := tracing.Start(rt.suiteContext().traceContext, t.Name())
    
    	runner := &testImpl{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	}
    
    	// find the containing object
    	base, span, _ := findObject(uintptr(e.data), 0, 0)
    
    	if base == 0 {
    		if isGoPointerWithoutSpan(e.data) {
    			return
    		}
    		throw("runtime.SetFinalizer: pointer not in allocated block")
    	}
    
    	// Move base forward if we've got an allocation header.
    	if !span.spanclass.noscan() && !heapBitsInSpan(span.elemsize) && span.spanclass.sizeclass() != 0 {
    		base += mallocHeaderSize
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top