Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 218 for prober (0.22 sec)

  1. cmd/kubelet/app/plugins.go

    	allPlugins = append(allPlugins, local.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
    	return allPlugins, nil
    }
    
    // GetDynamicPluginProber gets the probers of dynamically discoverable plugins
    // for kubelet.
    // Currently only Flexvolume plugins are dynamically discoverable.
    func GetDynamicPluginProber(pluginDir string, runner exec.Interface) volume.DynamicPluginProber {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    	allPlugins = append(allPlugins, iscsi.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
    	return allPlugins, nil
    }
    
    // GetDynamicPluginProber gets the probers of dynamically discoverable plugins
    // for the attach/detach controller.
    // Currently only Flexvolume plugins are dynamically discoverable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject_test.go

    			in:   "hello-probes.yaml",
    			want: "hello-probes.proxyHoldsApplication.yaml.injected",
    			setFlags: []string{
    				`values.global.proxy.holdApplicationUntilProxyStarts=true`,
    			},
    		},
    		{
    			// Verifies that HoldApplicationUntilProxyStarts in proxyconfig sets lifecycle hook
    			in:   "hello-probes-proxyHoldApplication-ProxyConfig.yaml",
    			want: "hello-probes-proxyHoldApplication-ProxyConfig.yaml.injected",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pkg/proxy/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// NetworkProgrammingLatency is defined as the time it took to program the network - from the time
    	// the service or pod has changed to the time the change was propagated and the proper kube-proxy
    	// rules were synced. Exported for each endpoints object that were part of the rules sync.
    	// See https://github.com/kubernetes/community/blob/master/sig-scalability/slos/network_programming_latency.md
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			expectedGracePeriod: shortGracePeriod,
    		},
    		{
    			name: "startup probe overrides pod termination grace period, probe period > pod period",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{
    						Name: "foo", StartupProbe: &v1.Probe{TerminationGracePeriodSeconds: &longGracePeriod},
    					}},
    					TerminationGracePeriodSeconds: &shortGracePeriod,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.values.gen.yaml

    Jonh Wendell <******@****.***> 1715709579 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/prober/results"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVersionDetector.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Probes a JVM installation to determine the Java version it provides.
     */
    @ServiceScope(Scope.Global.class)
    public interface JvmVersionDetector {
        /**
         * Probes the Java version for the given JVM installation.
         */
        int getJavaVersionMajor(JavaInfo jvm);
    
        /**
         * Probes the Java version for the given `java` command.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top