Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 775 for prober3 (0.26 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            assertInvalidUnixPermission("64 9", "'64 9' isn't a proper Unix permission. Trimmed length must be either 3 (for numeric notation) or 9 (for symbolic notation).");
            assertInvalidUnixPermission("|wxrwxrwx", "'|wxrwxrwx' isn't a proper Unix permission. '|' is not a valid Unix permission READ flag, must be 'r' or '-'.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    	)
    
    	// prober metrics are exposed under a different endpoint
    
    	s.addMetricsBucketMatcher("metrics/probes")
    	p := compbasemetrics.NewKubeRegistry()
    	_ = compbasemetrics.RegisterProcessStartTime(p.Register)
    	p.MustRegister(prober.ProberResults)
    	p.MustRegister(prober.ProberDuration)
    	s.restfulCont.Handle(proberMetricsPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook_test.go

    		name               string
    		perviouslyInjected bool
    		in                 []corev1.EnvVar
    		probers            string
    		want               []corev1.EnvVar
    	}{
    		{
    			name:               "Append Prober",
    			perviouslyInjected: false,
    			in:                 []corev1.EnvVar{},
    			probers: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  4. pkg/volume/nfs/nfs_test.go

    	if err != nil {
    		t.Fatalf("error creating temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    
    	plugMgr := volume.VolumePluginMgr{}
    	plugMgr.InitPlugins(ProbeVolumePlugins(volume.VolumeConfig{}), nil /* prober */, volumetest.NewFakeVolumeHost(t, tmpDir, nil, nil))
    	plug, err := plugMgr.FindPluginByName("kubernetes.io/nfs")
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    	if rewrite {
    		if prober := DumpAppProbers(pod, req.meshConfig.GetDefaultConfig().GetStatusPort()); prober != "" {
    			// If sidecar.istio.io/status is not present then append instead of merge.
    			_, previouslyInjected := pod.Annotations[annotation.SidecarStatus.Name]
    			sidecar.Env = mergeOrAppendProbers(previouslyInjected, sidecar.Env, prober)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/net/dial.go

    	// If negative, keep-alive probes are disabled.
    	KeepAlive time.Duration
    
    	// KeepAliveConfig specifies the keep-alive probe configuration
    	// for an active network connection, when supported by the
    	// protocol and operating system.
    	//
    	// If KeepAliveConfig.Enable is true, keep-alive probes are enabled.
    	// If KeepAliveConfig.Enable is false and KeepAlive is negative,
    	// keep-alive probes are disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. 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)
  9. pilot/cmd/pilot-agent/status/ready/probe_test.go

    	probe := Probe{AdminPort: uint16(server.Listener.Addr().(*net.TCPAddr).Port)}
    	probe.Context = ctx
    	err := probe.Check()
    	g.Expect(err).To(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeFalse())
    	err = probe.Check()
    	g.Expect(err).To(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeFalse())
    	server.Close()
    
    	server = testserver.CreateAndStartServer(liveServerStats)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemCollectorTest.java

            collector.setSource("SOURCE_PROBLEM2");
            collector.add(null, "PROBLEM2", -1, -1, null);
    
            collector.setSource("SOURCE_PROBLEM3");
            collector.add(null, "PROBLEM3", -1, -1, null);
    
            assertEquals("", collector.getProblems().get(0).getSource());
            assertEquals("SOURCE_PROBLEM2", collector.getProblems().get(1).getSource());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top