Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 673 for spans (0.04 sec)

  1. tools/packaging/common/envoy_bootstrap.json

          "name": "envoy.tracers.zipkin",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
            "collector_cluster": "zipkin",
            "collector_endpoint": "/api/v2/spans",
            "collector_endpoint_version": "HTTP_JSON",
            "trace_id_128bit": true,
            "shared_span_context": false
          }
        }
      }
      {{- else if .lightstep }}
      ,
      "tracing": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    	return errs
    }
    
    // ValidateZipkinCollector validates the configuration for sending envoy spans to Zipkin
    func ValidateZipkinCollector(z *meshconfig.Tracing_Zipkin) error {
    	return ValidateProxyAddress(strings.Replace(z.GetAddress(), "$(HOST_IP)", "127.0.0.1", 1))
    }
    
    // ValidateDatadogCollector validates the configuration for sending envoy spans to Datadog
    func ValidateDatadogCollector(d *meshconfig.Tracing_Datadog) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    	"math"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Formatting issues:
    // - better comment formatting for /*-style comments at the end of a line (e.g. a declaration)
    //   when the comment spans multiple lines; if such a comment is just two lines, formatting is
    //   not idempotent
    // - formatting of expression lists
    // - should use blank instead of tab to separate one-line function bodies from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/html/template/js_test.go

    		//   "The text in style, script, title, and textarea elements
    		//   must not have an escaping text span start that is not
    		//   followed by an escaping text span end."
    		// Furthermore, spoofing an escaping text span end could lead
    		// to different interpretation of a </script> sequence otherwise
    		// masked by the escaping text span, and spoofing a start could
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

       *
       *  * If it is a control frame this will result in a single call to [FrameCallback].
       *  * If it is a message frame this will result in a single call to [FrameCallback.onReadMessage].
       *    If the message spans multiple frames, each interleaved control frame will result in a
       *    corresponding call to [FrameCallback].
       */
      @Throws(IOException::class)
      fun processNextFrame() {
        readHeader()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tracing_test.go

    	}{
    		{
    			name:        "re-use otlp http headers",
    			dtTenant:    dtTenant,
    			dtClusterID: dtClusterID,
    			expectedURI: authority + "/api/v2/samplingConfiguration",
    		},
    		{
    			name:        "custom root spans per minute fallback",
    			dtTenant:    dtTenant,
    			dtClusterID: dtClusterID,
    			expectedURI: authority + "/api/v2/samplingConfiguration",
    			spansPerMin: 9999,
    		},
    	}
    
    	for _, tc := range testcases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    	var sampling float64
    	if useCustomSampler {
    		// If the TracingProvider has a custom sampler (OTel Sampler)
    		// the sampling percentage is set to 100% so all spans arrive at the sampler for its decision.
    		sampling = 100
    	} else if spec.RandomSamplingPercentage != nil {
    		sampling = *spec.RandomSamplingPercentage
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. docs/contribute/concurrency.md

    These are the primary classes involved with establishing, sharing, and terminating connections:
    
     * **RealConnectionPool** manages reuse of HTTP and HTTP/2 connections for reduced latency. Every OkHttpClient has one, and its lifetime spans the lifetime of the OkHttpClient.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    		}
    
    		// Check if val points to a heap span.
    		span := spanOfHeap(val)
    		if span == nil {
    			continue
    		}
    
    		// Check if val points to an allocated object.
    		idx := span.objIndex(val)
    		if span.isFree(idx) {
    			continue
    		}
    
    		// val points to an allocated object. Mark it.
    		obj := span.base() + idx*span.elemsize
    		greyobject(obj, b, i, span, gcw, idx)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/base.go

    	// - forEachGC above will run the provided function at some delay after each
    	//   GC's mark phase terminates; finalizers are run after marking as the
    	//   spans containing finalizable objects are swept, driven by GC
    	//   background activity and allocation demand.
    
    	// - "live at last GC" is not available through the current metrics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top