Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for probing (0.16 sec)

  1. pkg/kubelet/prober/worker.go

    		w.resultsManager.Set(w.containerID, results.Success, w.pod)
    		// Stop probing at this point.
    		return false
    	}
    
    	// Probe disabled for InitialDelaySeconds.
    	if int32(time.Since(c.State.Running.StartedAt.Time).Seconds()) < w.spec.InitialDelaySeconds {
    		return true
    	}
    
    	if c.Started != nil && *c.Started {
    		// Stop probing for startup once container has started.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/prober_manager.go

    		Help:           "Duration in seconds for a probe response.",
    		StabilityLevel: metrics.ALPHA,
    	},
    	[]string{"probe_type",
    		"container",
    		"pod",
    		"namespace"},
    )
    
    // Manager manages pod probing. It creates a probe "worker" for every container that specifies a
    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher.go

    				continue
    			}
    			klog.V(4).Info(log("attacher.VolumesAreAttached failed in AttachmentLister for attach.ID=%v: %v. Probing the API server.", attachID, err))
    		}
    		// The cache lookup is not setup or the object is not found in the cache.
    		// Get the object from the API server.
    		klog.V(4).Info(log("probing attachment status for VolumeAttachment %v", attachID))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

           | Error:              {description}errorMessage{normal}
    {identifier}     + path{normal}
           | Error:              {description}errorMessage{normal}
    
    """
        }
    
        def "reports toolchain probing failure cause lines"() {
            given:
            def createFailureWithNCauses = { n ->
                def rootCause = new Exception("lastLine")
                n == 0
                    ? rootCause :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/os/user/lookup_windows.go

    	// https://support.microsoft.com/en-us/help/243330/well-known-security-identifiers-in-windows-operating-systems
    	// SID: S-1-5-21domain-513
    	//
    	// The correct way to obtain the primary group of a domain user is
    	// probing the user primaryGroupID attribute in the server Active Directory:
    	// https://learn.microsoft.com/en-us/windows/win32/adschema/a-primarygroupid
    	//
    	// Note that the primary group of domain users should not be modified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	// CPU features, so if we make it to the last handler and we're
    	// arm64 and it's an illegal instruction and this is coming from
    	// non-Go code, then assume it's this runtime probing happen, and
    	// pass that onward to SEH.
    	if GOARCH == "arm64" && info.exceptioncode == _EXCEPTION_ILLEGAL_INSTRUCTION &&
    		(r.ip() < firstmoduledata.text || firstmoduledata.etext < r.ip()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. go.mod

    	github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
    	github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    	github.com/xlab/treeprint v1.2.0 // indirect
    	go.etcd.io/bbolt v1.3.9 // indirect
    	go.etcd.io/etcd/client/v2 v2.305.13 // indirect
    	go.etcd.io/etcd/pkg/v3 v3.5.13 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		// A valid input with empty probing path, which happens when HTTPGetAction.Path is not specified.
    		{
    			probe: `{"/app-health/hello-world/readyz": {"httpGet": {"path": "/hello/sunnyvale", "port": 8080}},
    "/app-health/business/livez": {"httpGet": {"port": 9090}}}`,
    		},
    		// A valid input without any prober info.
    		{
    			probe: `{}`,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSet.java

      private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/testing/benchmark.go

    // not the sum of wall time or CPU time over each parallel goroutine.
    func (b *B) RunParallel(body func(*PB)) {
    	if b.N == 0 {
    		return // Nothing to do when probing.
    	}
    	// Calculate grain size as number of iterations that take ~100µs.
    	// 100µs is enough to amortize the overhead and provide sufficient
    	// dynamic load balancing.
    	grain := uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top