Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,608 for probe2 (0.09 sec)

  1. manifests/charts/istiod-remote/values.yaml

          privileged: false
          # The number of successive failed probes before indicating readiness failure.
          readinessFailureThreshold: 4
          # The initial delay for readiness probes in seconds.
          readinessInitialDelaySeconds: 0
          # The period between readiness probes.
          readinessPeriodSeconds: 15
          # Enables or disables a startup probe.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/https-probes.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory.go

    		return newETCD3ProberMonitor(c)
    	default:
    		return nil, fmt.Errorf("unknown storage type: %s", c.Type)
    	}
    }
    
    // Prober is an interface that defines the Probe function for doing etcd readiness/liveness checks.
    type Prober interface {
    	Probe(ctx context.Context) error
    	Close() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/net/ipsock_posix.go

    		// and we don't need to probe the capability.
    		probes = probes[:1]
    	}
    	for i := range probes {
    		s, err := sysSocket(syscall.AF_INET6, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    		if err != nil {
    			continue
    		}
    		defer poll.CloseFunc(s)
    		syscall.SetsockoptInt(s, syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY, probes[i].value)
    		sa, err := probes[i].laddr.sockaddr(syscall.AF_INET6)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. pkg/registry/core/componentstatus/validator_test.go

    	}{
    		{probe.Unknown, "", fmt.Errorf("probe error"), probe.Unknown, "", true, nil},
    		{probe.Failure, "", nil, probe.Failure, "", false, nil},
    		{probe.Success, "foo", nil, probe.Failure, "foo", true, matchError},
    		{probe.Success, "foo", nil, probe.Success, "foo", false, nil},
    	}
    
    	s := HttpServer{Addr: "foo.com", Port: 8080, Path: "/healthz"}
    
    	for _, test := range tests {
    		fakeProber := &fakeHttpProber{
    			result: test.probeResult,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            configurationCacheRun ':included:classloader1:probe', ':included:boundary:classloader2:probe'
    
            then: 'on classloader classloader1'
            outputContains 'probe(classloader1) => 1'
            outputContains 'probe(classloader1) => 2'
            outputContains 'probe(classloader1) => 3'
    
            and: 'on classloader classloader2'
            outputContains 'probe(classloader2) => 1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     *
     * When the probe is armed, a probe file is created (or re-created) under the hierarchy.
     * This should cause a file system event to be produced by the operating system.
     * We listen to those events specifically in {@link FileWatcherRegistry}.
     * Once the event arrives, {@link #triggerWatchProbe(String)} is called with the path,
     * and the probe becomes triggered (or proven).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/covdata/testdata/prog2.go

    Than McIntosh <******@****.***> 1634828243 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 396 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    			// candidate max. For this we can query the
    			// fact table. We "prove" min < max by showing
    			// that min >= max is unsat. (This may simply
    			// compare two constants; that's fine.)
    			ft.checkpoint()
    			ft.update(b, min, max, tr.d, gt|eq)
    			proved := ft.unsat
    			ft.restore()
    
    			if proved {
    				// We know that min <= i1 < max.
    				if b.Func.pass.debug > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. test/prove.go

    	if len(a) <= 5 {
    		return 18
    	}
    	a[0] = 1 // ERROR "Proved IsInBounds$"
    	a[0] = 1 // ERROR "Proved IsInBounds$"
    	a[6] = 1
    	a[6] = 1 // ERROR "Proved IsInBounds$"
    	a[5] = 1 // ERROR "Proved IsInBounds$"
    	a[5] = 1 // ERROR "Proved IsInBounds$"
    	return 26
    }
    
    func f1b(a []int, i int, j uint) int {
    	if i >= 0 && i < len(a) {
    		return a[i] // ERROR "Proved IsInBounds$"
    	}
    	if i >= 10 && i < len(a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top