Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for Probe (0.04 sec)

  1. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            def watcherProbe = new File(watchableHierarchy, ".gradle/watch-probe")
            def anotherWatchableHierarchy = new File("anotherWatchable")
            def anotherWatcherProbe = new File(anotherWatchableHierarchy, ".gradle/watch-probe")
            def newWatchableHierarchy = new File("newWatchable")
            def newWatcherProbe = new File(newWatchableHierarchy, ".gradle/watch-probe")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	// become ready.
    	ReadinessTimeout time.Duration
    
    	// ReadinessTCPPort if set, use this port for the TCP readiness probe (instead of using a HTTP probe).
    	ReadinessTCPPort string
    
    	// ReadinessGRPCPort if set, use this port for the GRPC readiness probe (instead of using a HTTP probe).
    	ReadinessGRPCPort string
    
    	// Subsets contains the list of Subsets config belonging to this echo
    	// service instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

          readinessPeriodSeconds: 15
    
          # Enables or disables a startup probe.
          # For optimal startup times, changing this should be tied to the readiness probe values.
          #
          # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
          # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

                // Javadoc artifacts are optional, so we need to probe for them remotely
            }
    
            @Override
            protected void resolveSourceArtifacts(ComponentArtifactResolveMetadata module, BuildableArtifactSetResolveResult result) {
                // Source artifacts are optional, so we need to probe for them remotely
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/values.yaml

          readinessPeriodSeconds: 15
          # Enables or disables a startup probe.
          # For optimal startup times, changing this should be tied to the readiness probe values.
          #
          # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
          # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

    public class WatchableHierarchies {
        private static final Logger LOGGER = LoggerFactory.getLogger(WatchableHierarchies.class);
    
        public static final String INVALIDATING_HIERARCHY_MESSAGE = "Invalidating hierarchy because watch probe hasn't been triggered";
    
        private final FileWatcherProbeRegistry probeRegistry;
        private final Predicate<String> immutableLocationsFilter;
    
        /**
         * Files that can be watched.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    			Help:           "Cumulative proxy nftables cleanup failures",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// ProxyHealthzTotal is the number of returned HTTP Status for each
    	// healthz probe.
    	ProxyHealthzTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "proxy_healthz_total",
    			Help:           "Cumulative proxy healthz HTTP status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/net.go

    	}
    
    	return openNetns, nil
    }
    
    // AddPodToMesh adds a pod to mesh by
    // 1. Getting the netns
    // 2. Adding the pod's IPs to the hostnetns ipsets for node probe checks
    // 3. Creating iptables rules inside the pod's netns
    // 4. Notifying ztunnel via GRPC to create a proxy for the pod
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    // Returns nil if the given interface/type pair isn't present.
    func (t *itabTableType) find(inter *interfacetype, typ *_type) *itab {
    	// Implemented using quadratic probing.
    	// Probe sequence is h(i) = h0 + i*(i+1)/2 mod 2^k.
    	// We're guaranteed to hit all table entries using this probe sequence.
    	mask := t.size - 1
    	h := itabHashFunc(inter, typ) & mask
    	for i := uintptr(1); ; i++ {
    		p := (**itab)(add(unsafe.Pointer(&t.entries), h*goarch.PtrSize))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    	subsleep := fs.Duration("subsleep", 0, "amount of time for the 'hang' helper to leave an orphaned subprocess sleeping with stderr open")
    	probe := fs.Duration("probe", 0, "if nonzero, the 'hang' helper should write to stderr at this interval, and exit nonzero if a write fails")
    	read := fs.Bool("read", false, "if true, the 'hang' helper should read stdin to completion before sleeping")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top