Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 385 for tracking (0.26 sec)

  1. pkg/controller/job/job_controller_test.go

    				if float64(tc.wantFailedPodsMetric) != v {
    					t.Errorf("Metric reports %.0f failed pods, want %d", v, tc.wantFailedPodsMetric)
    				}
    			}
    		})
    	}
    }
    
    // TestSyncJobPastDeadline verifies tracking of active deadline in a single syncJob call.
    func TestSyncJobPastDeadline(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	testCases := map[string]struct {
    		// job setup
    		parallelism           int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
        "global.tracer.lightstep.accessToken" "meshConfig.defaultConfig.tracing.lightstep.accessToken"
        "global.tracer.zipkin.address" "meshConfig.defaultConfig.tracing.zipkin.address"
        "global.tracer.stackdriver.debug" "meshConfig.defaultConfig.tracing.stackdriver.debug"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    //go:embed testdata/otel-tracing.yaml
    var otelTracingCfg string
    
    //go:embed testdata/otel-tracing-http.yaml
    var otelTracingHTTPCfg string
    
    //go:embed testdata/otel-tracing-res-detectors.yaml
    var otelTracingResDetectorsCfg string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                      in this policy should go through the data plane's connection tracking,
                      such as Linux conntrack.  If True, the rules in this policy are
                      applied before any data plane connection tracking, and packets allowed
                      by this policy are marked as not to be tracked.
                    type: boolean
                  egress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/trace/testdata/testprog/many-start-stop.go

    		var buf bytes.Buffer
    		if err := trace.Start(&buf); err != nil {
    			log.Fatalf("failed to start tracing: %v", err)
    		}
    		runtime.GC()
    		trace.Stop()
    	}
    
    	// Start tracing again, this time writing out the result.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	runtime.GC()
    	trace.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  8. 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)
  9. src/internal/trace/testdata/testprog/gomaxprocs.go

    	// GOMAXPROCS calls.
    	go func() {
    		for {
    			runtime.GC()
    			time.Sleep(1 * time.Millisecond)
    		}
    	}()
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	// Run GOMAXPROCS a bunch of times, up and down.
    	for i := 1; i <= 16; i *= 2 {
    		runtime.GOMAXPROCS(i)
    		time.Sleep(1 * time.Millisecond)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 967 bytes
    - Viewed (0)
  10. 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)
Back to top