Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 664 for map1 (0.05 sec)

  1. pkg/test/framework/components/ambient/waypoint.go

    		oldLabels := oldSvc.ObjectMeta.GetLabels()
    		if oldLabels == nil {
    			oldLabels = make(map[string]string, 1)
    		}
    		newLabels := maps.Clone(oldLabels)
    		if waypoint != "" {
    			newLabels[constants.AmbientUseWaypointLabel] = waypoint
    		} else {
    			delete(newLabels, constants.AmbientUseWaypointLabel)
    		}
    
    		doLabel := func(labels map[string]string) error {
    			// update needs the latest version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod.go

    	// This should only contain RUNNING or PENDING pods with an allocated IP.
    	podsByIP map[string]sets.Set[types.NamespacedName]
    	// IPByPods is a reverse map of podsByIP. This exists to allow us to prune stale entries in the
    	// pod cache if a pod changes IP.
    	IPByPods map[types.NamespacedName]string
    
    	// needResync is map of IP to endpoint namespace/name. This is used to requeue endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas.go

    	}
    	props := make(map[string]schema.Structural, len(s.Properties))
    	for k, prop := range s.Properties {
    		props[k] = prop
    	}
    	stringType := schema.Structural{Generic: schema.Generic{Type: "string"}}
    	props["kind"] = stringType
    	props["apiVersion"] = stringType
    	props["metadata"] = schema.Structural{
    		Generic: schema.Generic{Type: "object"},
    		Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    }
    
    // Map maps from *ssa.Value to StackMapIndex.
    // Also keeps track of unsafe ssa.Values and ssa.Blocks.
    // (unsafe = can't be interrupted during GC.)
    type Map struct {
    	Vals         map[ssa.ID]objw.StackMapIndex
    	UnsafeVals   map[ssa.ID]bool
    	UnsafeBlocks map[ssa.ID]bool
    	// The set of live, pointer-containing variables at the DeferReturn
    	// call (only set when open-coded defers are used).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/WellKnownClassLoaderRegistry.java

    import org.gradle.internal.classloader.ClassLoaderSpec;
    import org.gradle.internal.classloader.ClassLoaderUtils;
    
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    
    /**
     * A {@link PayloadClassLoaderRegistry} that maps classes loaded by several well known ClassLoaders: the JVM platform, Gradle core and Gradle plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    func (rb *IptablesRuleBuilder) BuildV6() [][]string {
    	return rb.buildRules(rb.rules.rulesv6)
    }
    
    func (rb *IptablesRuleBuilder) constructIptablesRestoreContents(tableRulesMap map[string][]string) string {
    	var b strings.Builder
    	for _, table := range slices.Sort(maps.Keys(tableRulesMap)) {
    		rules := tableRulesMap[table]
    		if len(rules) > 0 {
    			_, _ = fmt.Fprintln(&b, "*", table)
    			for _, r := range rules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pkg/proxy/util/utils.go

    				UID:       svcUID,
    			}, nil, v1.EventTypeWarning, "KubeProxyIncorrectIPVersion", "GatherEndpoints", errMsg)
    	}
    }
    
    // MapIPsByIPFamily maps a slice of IPs to their respective IP families (v4 or v6)
    func MapIPsByIPFamily(ipStrings []string) map[v1.IPFamily][]net.IP {
    	ipFamilyMap := map[v1.IPFamily][]net.IP{}
    	for _, ipStr := range ipStrings {
    		ip := netutils.ParseIPSloppy(ipStr)
    		if ip != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. cmd/metrics-v3.go

    	// of buckets is not known until the request is made. So we keep a separate
    	// map for bucket metrics and handle them specially.
    
    	// Add the serverName and poolIndex labels to all non-cluster metrics.
    	//
    	// Also create metric group maps and set the cache.
    	metricsCache := newMetricsCache()
    	mgMap := make(map[collectorPath]*MetricsGroup)
    	bucketMGMap := make(map[collectorPath]*MetricsGroup)
    	for _, mg := range allMetricGroups {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        LinkedHashMap<K, V> map = Maps.newLinkedHashMap();
        map.put(key, value);
        return map;
      }
    
      @Generates
      static <K, V> ImmutableMap<K, V> generateImmutableMap(K key, V value) {
        return ImmutableMap.of(key, value);
      }
    
      @Empty
      static <K, V> ConcurrentMap<K, V> generateConcurrentMap() {
        return Maps.newConcurrentMap();
      }
    
      @Generates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/authentication.go

    type AuthenticationPolicies struct {
    	// Maps from namespace to the v1beta1 authentication policies.
    	requestAuthentications map[string][]config.Config
    
    	peerAuthentications map[string][]config.Config
    
    	// namespaceMutualTLSMode is the MutualTLSMode corresponding to the namespace-level PeerAuthentication.
    	// All namespace-level policies, and only them, are added to this map. If the policy mTLS mode is set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top