Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for currentCA (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // deleteFromSlice uses the parallel list to delete the items in a list of scalars
    func deleteFromSlice(current, toDelete []interface{}) []interface{} {
    	toDeleteMap := map[interface{}]interface{}{}
    	processed := make([]interface{}, 0, len(current))
    	for _, v := range toDelete {
    		toDeleteMap[v] = true
    	}
    	for _, v := range current {
    		if _, found := toDeleteMap[v]; !found {
    			processed = append(processed, v)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    					epInfo.Cleanup()
    				}
    
    			}
    		}
    	}
    }
    
    func (proxier *Proxier) serviceMapChange(previous, current proxy.ServicePortMap) {
    	for svcPortName := range current {
    		proxier.onServiceMapChange(&svcPortName)
    	}
    
    	for svcPortName := range previous {
    		if _, ok := current[svcPortName]; ok {
    			continue
    		}
    		proxier.onServiceMapChange(&svcPortName)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	}
    
    	nodeName, err := instances.CurrentNodeName(context.TODO(), hostname)
    	if err != nil {
    		return "", fmt.Errorf("error fetching current node name from cloud provider: %w", err)
    	}
    
    	klog.V(2).InfoS("Cloud provider determined current node", "nodeName", klog.KRef("", string(nodeName)))
    
    	return nodeName, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker_test.go

    					t.Errorf("Expected change.previous: %+v, got: %+v", expectedChange.previous, change.previous)
    				}
    
    				if !reflect.DeepEqual(change.current, expectedChange.current) {
    					t.Errorf("Expected change.current: %+v, got: %+v", expectedChange.current, change.current)
    				}
    			}
    		})
    	}
    }
    
    // Test helpers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    type DestinationHashMap map[*networking.HTTPRouteDestination]*networking.LoadBalancerSettings_ConsistentHashLB
    
    // VirtualHostWrapper is a context-dependent virtual host entry with guarded routes.
    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    In other words, the configuration cache saves the output of the configuration phase, and the build cache saves the outputs of the execution phase.
    
    [IMPORTANT]
    ====
    This feature is currently not enabled by default. This feature has the following limitations:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        // considered valid. We don't protect writing to has_owner_ here, as it's
        // the caller's responsibility to ensure that the current thread holds the
        // mutex when this is called.
        has_owner_ = false;
        GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));
      }
    
      // Does nothing if the current thread holds the mutex. Otherwise, crashes
      // with high probability.
      void AssertHeld() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	defer xioutil.SafeClose(updates)
    	var lc *lifecycle.Lifecycle
    
    	// Check if the current bucket has a configured lifecycle policy
    	if globalLifecycleSys != nil {
    		lc, err = globalLifecycleSys.Get(cache.Info.Name)
    		if err == nil && lc.HasActiveRules("") {
    			cache.Info.lifeCycle = lc
    		}
    	}
    
    	// Check if the current bucket has replication configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	// a go.mod file in the current directory or any parent. If none is found,
    	// modules may be disabled (GO111MODULE=auto) or commands may run in a
    	// limited module mode.
    	AutoRoot Root = iota
    
    	// NoRoot is used for commands that run in module mode and ignore any go.mod
    	// file the current directory or in parent directories.
    	NoRoot
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// typeName is a description used to describe this type of container in log messages,
    	// currently: "container", "init container" or "ephemeral container"
    	// metricLabel is the label used to describe this type of container in monitoring metrics.
    	// currently: "container", "init_container" or "ephemeral_container"
    	start := func(ctx context.Context, typeName, metricLabel string, spec *startSpec) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top