Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 443 for map1 (0.04 sec)

  1. pilot/pkg/model/gateway.go

    	gatewayPorts := sets.New[uint32]()
    	nonPlainTextGatewayPortsBindMap := map[uint32]sets.String{}
    	mergedServers := make(map[ServerPort]*MergedServers)
    	mergedQUICServers := make(map[ServerPort]*MergedServers)
    	serverPorts := make([]ServerPort, 0)
    	plainTextServers := make(map[uint32]ServerPort)
    	serversByRouteName := make(map[string][]*networking.Server)
    	tlsServerInfo := make(map[*networking.Server]*TLSServerInfo)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    			}
    			infra[string(k)] = string(v)
    		}
    		return infra
    	} else if isLabel {
    		if gw.GetLabels() == nil {
    			return make(map[string]string)
    		}
    		return maps.Clone(gw.GetLabels())
    	}
    	if gw.GetAnnotations() == nil {
    		return make(map[string]string)
    	}
    	return maps.Clone(gw.GetAnnotations())
    }
    
    const (
    	// ControllerVersionAnnotation is an annotation added to the Gateway by the controller specifying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

    import com.google.common.collect.HashMultimap;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Sets;
    import com.google.common.reflect.ClassPath;
    import com.google.common.testing.NullPointerTester.Visibility;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	return g
    }
    
    // newGraph computes a graph from a profile. It returns the graph, and
    // a map from the profile location indices to the corresponding graph
    // nodes.
    func newGraph(prof *profile.Profile, o *Options) (*Graph, map[uint64]Nodes) {
    	nodes, locationMap := CreateNodes(prof, o)
    	seenNode := make(map[*Node]bool)
    	seenEdge := make(map[nodePair]bool)
    	for _, sample := range prof.Sample {
    		var w, dw int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

        Segment(
            LocalCache<K, V> map,
            int initialCapacity,
            long maxSegmentWeight,
            StatsCounter statsCounter) {
          this.map = map;
          this.maxSegmentWeight = maxSegmentWeight;
          this.statsCounter = checkNotNull(statsCounter);
          initTable(newEntryArray(initialCapacity));
    
          keyReferenceQueue = map.usesKeyReferences() ? new ReferenceQueue<>() : null;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. src/runtime/map_test.go

    	type T [4000]byte
    	m := map[int]T{}
    	x := m[0]
    	if x != (T{}) {
    		t.Errorf("map value not zero")
    	}
    	y, ok := m[0]
    	if ok {
    		t.Errorf("map value should be missing")
    	}
    	if y != (T{}) {
    		t.Errorf("map value not zero")
    	}
    }
    
    type empty struct {
    }
    
    func TestEmptyKeyAndValue(t *testing.T) {
    	a := make(map[int]empty, 4)
    	b := make(map[empty]int, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/compute_test.go

    func (f *fakeVersionGetter) ComponentVersions(name string) (map[string][]string, error) {
    	if name == constants.Etcd {
    		if f.isExternalEtcd {
    			return map[string][]string{}, nil
    		}
    		return map[string][]string{
    			f.etcdVersion: {"node1"},
    		}, nil
    	}
    
    	if f.componentVersion == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         */
        void set(Provider<? extends Map<? extends K, ? extends V>> provider);
    
        /**
         * Sets the value of this property to the entries of the given Map, and replaces any existing value.
         * This property will query the entries of the map each time the value of this property is queried.
         *
         * <p>This is the same as {@link #set(Map)} but returns this property to allow method chaining.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			pod: newResourcePod(
    				framework.Resource{MilliCPU: 1, Memory: 1, ScalarResources: map[v1.ResourceName]int64{extendedResourceA: 3}},
    				framework.Resource{MilliCPU: 1, Memory: 1, ScalarResources: map[v1.ResourceName]int64{extendedResourceA: 3}}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 0, Memory: 0, ScalarResources: map[v1.ResourceName]int64{extendedResourceA: 2}})),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top