Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 775 for prober3 (0.13 sec)

  1. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		}
    		if err != nil {
    			clientErr = err
    			return false, nil
    		}
    		prober = newProber
    		clientErr = nil
    		return true, nil
    	}, stopCh)
    
    	// Close the client on shutdown.
    	go func() {
    		defer utilruntime.HandleCrash()
    		<-stopCh
    
    		lock.Lock()
    		defer lock.Unlock()
    		if prober != nil {
    			prober.Close()
    			clientErr = fmt.Errorf("server is shutting down")
    		}
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/probe/dialer_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    import (
    	"net"
    	"syscall"
    )
    
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kube/inject/testdata/inject/tcp-probes.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
    - 7K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    	pm.mutex.Lock()
    	defer pm.mutex.Unlock()
    
    	pm.Host = host
    	pm.loggedDeprecationWarnings = sets.New[string]()
    
    	if prober == nil {
    		// Use a dummy prober to prevent nil deference.
    		pm.prober = &dummyPluginProber{}
    	} else {
    		pm.prober = prober
    	}
    	if err := pm.prober.Init(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. internal/http/dial_linux.go

    				// TCP starts sending keepalive probes
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, 15)
    
    				// Number of probes.
    				// ~ cat /proc/sys/net/ipv4/tcp_keepalive_probes (defaults to 9, we reduce it to 5)
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPCNT, 5)
    
    				// Wait time after successful probe in seconds.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  9. 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)
  10. pilot/cmd/pilot-agent/options/statusserver.go

    		PodIP:          InstanceIPVar.Get(),
    		AdminPort:      uint16(proxyConfig.ProxyAdminPort),
    		StatusPort:     uint16(proxyConfig.StatusPort),
    		KubeAppProbers: kubeAppProberNameVar.Get(),
    		NodeType:       t,
    		Probes:         []ready.Prober{agent},
    		NoEnvoy:        agent.EnvoyDisabled(),
    		FetchDNS:       agent.GetDNSTable,
    		GRPCBootstrap:  agent.GRPCBootstrapPath(),
    		TriggerDrain: func() {
    			agent.DrainNow()
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top