Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for tracking (0.14 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// 1.27+, one release after JobTrackingWithFinalizers graduates to GA, the
    	// apiserver and job controller will ignore this annotation and they will
    	// always track jobs using finalizers.
    	JobTrackingFinalizer = labelPrefix + "job-tracking"
    	// The Job labels will use batch.kubernetes.io as a prefix for all labels
    	// Historically the job controller uses unprefixed labels for job-name and controller-uid and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    // computeEncryptionConfigHash returns the expected hash for an encryption config file that has been loaded as bytes.
    // We use a hash instead of the raw file contents when tracking changes to avoid holding any encryption keys in memory outside of their associated transformers.
    // This hash must be used in-memory and not externalized to the process because it has no cross-release stability guarantees.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    }
    
    // startingStackSize is the amount of stack that new goroutines start with.
    // It is a power of 2, and between _FixedStack and maxstacksize, inclusive.
    // startingStackSize is updated every GC by tracking the average size of
    // stacks scanned during the GC.
    var startingStackSize uint32 = fixedStack
    
    func gcComputeStartingStackSize() {
    	if debug.adaptivestackstart == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_test.go

    		},
    	}
    	empty := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{{}},
    	}
    	disabled := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				DisableSpanReporting: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	overidesA := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				RandomSamplingPercentage: &wrappers.DoubleValue{Value: 50.0},
    				CustomTags: map[string]*tpb.Tracing_CustomTag{
    					"foo": {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.tracer.lightstep.address", "meshConfig.defaultConfig.tracing.lightstep.address", ""},
    		{"Values.global.tracer.lightstep.accessToken", "meshConfig.defaultConfig.tracing.lightstep.accessToken", ""},
    		{"Values.global.tracer.zipkin.address", "meshConfig.defaultConfig.tracing.zipkin.address", nil},
    		{"Values.global.tracer.datadog.address", "meshConfig.defaultConfig.tracing.datadog.address", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    			}
    		}
    	}
    	sort.SliceStable(ct.Tracing, func(i, j int) bool {
    		return ct.Tracing[i].Providers[0].Name < ct.Tracing[j].Providers[0].Name
    	})
    	sort.SliceStable(other.Tracing, func(i, j int) bool {
    		return other.Tracing[i].Providers[0].Name < other.Tracing[j].Providers[0].Name
    	})
    	for i := range ct.Tracing {
    		if ct.Tracing[i].Match != nil && other.Tracing[i].Match != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	// minPageHeapAddr is the minimum address of the page heap when tracing started.
    	minPageHeapAddr uint64
    
    	// debugMalloc is the value of debug.malloc before tracing began.
    	debugMalloc bool
    }
    
    // Trace public API.
    
    var (
    	traceAdvanceSema  uint32 = 1
    	traceShutdownSema uint32 = 1
    )
    
    // StartTrace enables tracing for the current process.
    // While tracing, the data will be buffered and available via [ReadTrace].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

            # sampling and log sampling decisions in Istio.
            'x-request-id',
    
            # Lightstep tracing header. Propagate this if you use lightstep tracing
            # in Istio (see
            # https://istio.io/latest/docs/tasks/observability/distributed-tracing/lightstep/)
            # Note: this should probably be changed to use B3 or W3C TRACE_CONTEXT.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  9. pkg/bootstrap/config.go

    		option.DiscoveryAddress(config.DiscoveryAddress),
    		option.StatsdAddress(config.StatsdUdpAddress),
    		option.XDSRootCert(metadata.XDSRootCert))
    
    	// Add tracing options.
    	if config.Tracing != nil {
    		isH2 := false
    		switch tracer := config.Tracing.Tracer.(type) {
    		case *meshAPI.Tracing_Zipkin_:
    			opts = append(opts, option.ZipkinAddress(tracer.Zipkin.Address))
    		case *meshAPI.Tracing_Lightstep_:
    			isH2 = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. tools/packaging/common/envoy_bootstrap.json

      }
      {{- else if .lightstep }}
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.lightstep",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.LightstepConfig",
            "collector_cluster": "lightstep",
            "access_token_file": "{{ .lightstepToken}}"
          }
        }
      }
      {{- else if .datadog }}
      ,
      "tracing": {
        "http": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top