Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for GetKey (0.14 sec)

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

              final Entry<K, V> backingEntry = backingIterator.next();
              return new AbstractMapEntry<K, ImmutableSet<V>>() {
                @Override
                public K getKey() {
                  return backingEntry.getKey();
                }
    
                @Override
                public ImmutableSet<V> getValue() {
                  return ImmutableSet.of(backingEntry.getValue());
                }
              };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller_test.go

    	rs := newReplicaSet(d, "deploymentrs-4186632231", 1)
    
    	f.expectCreateRSAction(rs)
    	f.expectUpdateDeploymentStatusAction(d)
    	f.expectUpdateDeploymentStatusAction(d)
    
    	f.run(ctx, testutil.GetKey(d, t))
    }
    
    func TestSyncDeploymentDontDoAnythingDuringDeletion(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

       */
      void insertEntry(
          int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) {
        this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask));
        this.setKey(entryIndex, key);
        this.setValue(entryIndex, value);
      }
    
      /** Resizes the entries storage if necessary. */
      private void resizeMeMaybe(int newSize) {
        int entriesSize = requireEntries().length;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                Map<String, String> systemProperties = new HashMap<String, String>();
                for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
                    systemProperties.put(entry.getKey().toString(), entry.getValue() == null ? null : entry.getValue().toString());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    }
    
    // Lookup finds all addresses associated with a given key. Many different key formats are supported; see inline comments.
    func (a *index) Lookup(key string) []model.AddressInfo {
    	// 1. Workload UID
    	if w := a.workloads.GetKey(krt.Key[model.WorkloadInfo](key)); w != nil {
    		return []model.AddressInfo{workloadToAddressInfo(w.Workload)}
    	}
    
    	network, ip, found := strings.Cut(key, "/")
    	if !found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

                return typeHierarchyAnalysis.stream()
                    .flatMap(file -> serializer.readTypeHierarchyAnalysis(file).entrySet().stream())
                    .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, Sets::union));
            }
    
            abstract ConfigurableFileCollection getTypeHierarchyAnalysisResult();
            abstract ConfigurableFileCollection getOriginalClasspath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashMap.java

       */
      void insertEntry(
          int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) {
        this.setEntry(entryIndex, CompactHashing.maskCombine(hash, UNSET, mask));
        this.setKey(entryIndex, key);
        this.setValue(entryIndex, value);
      }
    
      /** Resizes the entries storage if necessary. */
      private void resizeMeMaybe(int newSize) {
        int entriesSize = requireEntries().length;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                Map<String, String> arguments = new LinkedHashMap<>();
                for (Map.Entry<String, String> entry : b.getArguments().entrySet()) {
                    arguments.put(convertGString(entry.getKey()), convertGString(entry.getValue()));
                }
                buildCommands.add(new DefaultEclipseBuildCommand(b.getName(), arguments));
            }
            eclipseProject.setBuildCommands(buildCommands);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

                    Artifact artifact, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories)
                    throws ArtifactMetadataRetrievalException {
                String key = getKey(artifact);
    
                ArtifactSpec a = (ArtifactSpec) artifacts.get(key);
                try {
                    return new ResolutionGroup(
                            artifact,
                            createArtifacts(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

            new ImmutableMap.Builder<>(mapEntries.size());
        int size = 0;
    
        for (Entry<? extends K, ? extends Collection<? extends V>> entry : mapEntries) {
          K key = entry.getKey();
          Collection<? extends V> values = entry.getValue();
          ImmutableList<V> list =
              (valueComparator == null)
                  ? ImmutableList.copyOf(values)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top