Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for map1 (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            "x-kubernetes-map-type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				{
    					Address: "us.google.com",
    					Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    				{
    					Address: "uk.google.com",
    					Ports:   map[string]uint32{"http-port": 1080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

       * in the following code fragment:
       *
       * <pre>{@code
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
       * }</pre>
       *
       * <p>The returned set is serializable if the backing map is.
       *
       * @param map the backing map
       * @return the set backed by the map
       * @throws IllegalArgumentException if {@code map} is not empty
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

          Map<K, Integer> map = Maps.newHashMap();
          for (K type : types) {
            collectTypes(type, map);
          }
          return sortKeysByValue(map, Ordering.natural().reverse());
        }
    
        /** Collects all types to map, and returns the total depth from T up to Object. */
        @CanIgnoreReturnValue
        private int collectTypes(K type, Map<? super K, Integer> map) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/core/httproute_test.go

    		// virtualHost Name and domains
    		expectedHosts  map[string]map[string]bool
    		expectedRoutes int
    		registryOnly   bool
    	}{
    		{
    			name:                  "sidecar config port that is not in any service",
    			routeName:             "9000",
    			sidecarConfig:         sidecarConfig,
    			virtualServiceConfigs: nil,
    			expectedHosts: map[string]map[string]bool{
    				"block_all": {
    					"*": true,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        @Override
        Map<String, String> someValue() {
            return ['k1': 'v1', 'k2': 'v2']
        }
    
        @Override
        Map<String, String> someOtherValue() {
            return ['k1': 'v1']
        }
    
        @Override
        Map<String, String> someOtherValue2() {
            return ['k2': 'v2']
        }
    
        @Override
        Map<String, String> someOtherValue3() {
            return ['k3': 'v3']
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

       * in the following code fragment:
       *
       * <pre>{@code
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
       * }</pre>
       *
       * <p>The returned set is serializable if the backing map is.
       *
       * @param map the backing map
       * @return the set backed by the map
       * @throws IllegalArgumentException if {@code map} is not empty
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	// Workload is unhealthy and NOT ready to serve traffic.
    	WorkloadStatus_UNHEALTHY WorkloadStatus = 1
    )
    
    // Enum value maps for WorkloadStatus.
    var (
    	WorkloadStatus_name = map[int32]string{
    		0: "HEALTHY",
    		1: "UNHEALTHY",
    	}
    	WorkloadStatus_value = map[string]int32{
    		"HEALTHY":   0,
    		"UNHEALTHY": 1,
    	}
    )
    
    func (x WorkloadStatus) Enum() *WorkloadStatus {
    	p := new(WorkloadStatus)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	// known lower and upper bounds on individual values.
    	limits     map[ID]limit
    	limitStack []limitFact // previous entries
    
    	// For each slice s, a map from s to a len(s)/cap(s) value (if any)
    	// TODO: check if there are cases that matter where we have
    	// more than one len(s) for a slice. We could keep a list if necessary.
    	lens map[ID]*Value
    	caps map[ID]*Value
    
    	// zero is a zero-valued constant
    	zero *Value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top