Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for Keys (0.05 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          this.keys = new @Nullable Object[initialCapacity];
          this.values = new @Nullable Object[initialCapacity];
        }
    
        private void ensureCapacity(int minCapacity) {
          if (minCapacity > keys.length) {
            int newCapacity = ImmutableCollection.Builder.expandedCapacity(keys.length, minCapacity);
            this.keys = Arrays.copyOf(keys, newCapacity);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    		}
    	}
    	return true
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    func (efw *EnvoyFilterWrapper) Keys() []string {
    	if efw == nil {
    		return nil
    	}
    	keys := sets.String{}
    	for _, patches := range efw.Patches {
    		for _, patch := range patches {
    			keys.Insert(patch.Key())
    		}
    	}
    	return sets.SortedList(keys)
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    		keys = append(keys, k)
    	}
    	if len(keys) >= 2 {
    		sort.Slice(keys, func(i, j int) bool {
    			if keys[i].Provider == keys[j].Provider {
    				return keys[i].Cluster < keys[j].Cluster
    			}
    			return keys[i].Provider < keys[j].Provider
    		})
    	}
    	return keys
    }
    
    // CopyEndpoints takes a snapshot of all endpoints. As input, it takes a map of port name to number, to allow it to group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMap.java

        }
    
        @SuppressWarnings("unchecked")
        final Object legacyReadResolve() {
          K[] keys = (K[]) this.keys;
          V[] values = (V[]) this.values;
    
          Builder<K, V> builder = makeBuilder(keys.length);
    
          for (int i = 0; i < keys.length; i++) {
            builder.put(keys[i], values[i]);
          }
          return builder.buildOrThrow();
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableBiMap.java

      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableBiMap} whose keys
       * and values are the result of applying the provided mapping functions to the input elements.
       * Entries appear in the result {@code ImmutableBiMap} in encounter order.
       *
       * <p>If the mapped keys or values contain duplicates (according to {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/prometheus/kube.go

    	Metric      string
    	Aggregation string
    	Labels      map[string]string
    }
    
    func (q Query) String() string {
    	query := q.Metric + `{`
    
    	keys := []string{}
    	for k := range q.Labels {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	for _, k := range keys {
    		v := q.Labels[k]
    		query += fmt.Sprintf(`%s=%q,`, k, v)
    	}
    	query += "}"
    	if q.Aggregation != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/log/options.go

    		levelToString[FatalLevel],
    		levelToString[NoneLevel])
    
    	allScopes := Scopes()
    	if len(allScopes) > 1 {
    		keys := make([]string, 0, len(allScopes))
    		for name := range allScopes {
    			keys = append(keys, name)
    		}
    		keys = append(keys, OverrideScopeName)
    		sort.Strings(keys)
    		s := strings.Join(keys, ", ")
    
    		stringVar(&o.outputLevels, "log_output_level", o.outputLevels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildFeatureIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            outputContains("configurationCache.requested=true")
            outputContains("configurationCache.active=true")
        }
    
        def "not active even if requested due to --export-keys flag"() {
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile """
                import org.gradle.api.configuration.BuildFeatures
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    	"github.com/fxamacker/cbor/v2"
    )
    
    var Decode cbor.DecMode = func() cbor.DecMode {
    	decode, err := cbor.DecOptions{
    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. releasenotes/notes/48882.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 216 bytes
    - Viewed (0)
Back to top