Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for Pods (0.3 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	node := getFakeNode()
    	volumePluginMgr, fakePlugin := volumetesting.GetTestKubeletVolumePluginMgrWithNodeAndRoot(t, node, kubeletDir)
    	tmpKubeletPodDir := filepath.Join(kubeletDir, "pods")
    	seLinuxTranslator := util.NewFakeSELinuxLabelTranslator()
    
    	dsw := cache.NewDesiredStateOfWorld(volumePluginMgr, seLinuxTranslator)
    	asw := cache.NewActualStateOfWorld(nodeName, volumePluginMgr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				"configmaps":       "k8s:enc:kms:v1:kms:",
    				"secrets":          "k8s:enc:kms:v1:another-kms:",
    				"events":           "k8s:enc:kms:v1:fancy:",
    				"deployments.apps": "k8s:enc:kms:v1:kms:",
    				"pods":             "k8s:enc:kms:v1:fancy:",
    				"pandas":           "k8s:enc:kms:v1:fancy:",
    				"pandas.bears":     "k8s:enc:kms:v1:yet-another-provider:",
    				"jobs.apps":        "k8s:enc:kms:v1:kms:",
    			},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		if onlyNodeLocalEndpoints {
    			if len(localEndpoints) > 0 {
    				endpoints = localEndpoints
    			} else {
    				// https://github.com/kubernetes/kubernetes/pull/97081
    				// Allow access from local PODs even if no local endpoints exist.
    				// Traffic from an external source will be routed but the reply
    				// will have the POD address and will be discarded.
    				endpoints = clusterEndpoints
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// the sidecar calls.
    	// Updated by GetProxyServiceTargets
    	ProxyStatusNoService = monitoring.NewGauge(
    		"pilot_no_ip",
    		"Pods not found in the endpoint table, possibly invalid.",
    	)
    
    	// ProxyStatusEndpointNotReady represents proxies found not be ready.
    	// Updated by GetProxyServiceTargets. Normal condition when starting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // explicit requirements of the modules in mods.
    func spotCheckRoots(ctx context.Context, rs *Requirements, mods map[module.Version]bool) bool {
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    	work := par.NewQueue(runtime.GOMAXPROCS(0))
    	for m := range mods {
    		m := m
    		work.Add(func() {
    			if ctx.Err() != nil {
    				return
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    func (ld *loader) checkMultiplePaths() {
    	mods := ld.requirements.rootModules
    	if cached := ld.requirements.graph.Load(); cached != nil {
    		if mg := cached.mg; mg != nil {
    			mods = mg.BuildList()
    		}
    	}
    
    	firstPath := map[module.Version]string{}
    	for _, mod := range mods {
    		src := resolveReplacement(mod)
    		if prev, ok := firstPath[src]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top