Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for ContainsKey (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            boolean matched = false;
            String fromConfigName = fromConfiguration.getName();
            for (String config : fromConfiguration.getHierarchy()) {
                if (confs.containsKey(config)) {
                    Set<String> targetPatterns = confs.get(config);
                    if (!targetPatterns.isEmpty()) {
                        matched = true;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

            final Class<?> targetClass = target.getClass();
            Map<String, OptionDescriptor> options = new HashMap<String, OptionDescriptor>();
            if (!cachedOptionElements.containsKey(targetClass)) {
                loadClassDescriptorInCache(target);
            }
            for (OptionElement optionElement : cachedOptionElements.get(targetClass)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          List<Entry<Object, Object>> warmed = warmUp(cache);
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
            assertTrue(cache.asMap().containsKey(entry.getKey()));
            assertTrue(cache.asMap().containsValue(entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

            }
    
            @Override
            public void visitInputProperty(String propertyName, ValueSupplier value) {
                if (knownCurrentValueSnapshots.containsKey(propertyName)) {
                    return;
                }
                Object actualValue = value.getValue();
                try {
                    ValueSnapshot previousSnapshot = previousValueSnapshots.get(propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

                assert event.descriptor.name
    
                if (event instanceof StartEvent) {
                    def descriptor = event.descriptor
                    assert seen.add(descriptor)
                    assert !running.containsKey(descriptor)
                    running[descriptor] = event
    
                    // Display name should be mostly unique
                    if (uniqueBuildOperation(descriptor)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                    ivyFileWriter << "\n  <exclude"
                    if (exclude.containsKey("organisation")) {
                        ivyFileWriter << " org=\"${exclude.organisation}\""
                    }
                    if (exclude.containsKey("module")) {
                        ivyFileWriter << " module=\"${exclude.module}\""
                    }
                    if (exclude.containsKey("artifact")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeBasedTable.java

            backingMap.remove(rowKey);
            wholeRow = null;
            backingRowMap = null;
          }
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return rangeContains(key) && super.containsKey(key);
        }
    
        @Override
        @CheckForNull
        public V put(C key, V value) {
          checkArgument(rangeContains(checkNotNull(key)));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      private Map<K, Long> createAsMap() {
        return Collections.unmodifiableMap(map);
      }
    
      /** Returns true if this map contains a mapping for the specified key. */
      public boolean containsKey(Object key) {
        return map.containsKey(key);
      }
    
      /**
       * Returns the number of key-value mappings in this map. If the map contains more than {@code
       * Integer.MAX_VALUE} elements, returns {@code Integer.MAX_VALUE}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                docMap.put(fessConfig.getResponseFieldSitePath(), viewHelper.getSitePath(docMap));
            }
    
            if (!docMap.containsKey(Constants.SCORE)) {
                docMap.put(Constants.SCORE, searchHit.getScore());
            }
    
            if (!docMap.containsKey(fessConfig.getIndexFieldId())) {
                docMap.put(fessConfig.getIndexFieldId(), searchHit.getId());
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractBiMap.java

        this.inverse = inverse;
      }
    
      // Query Operations (optimizations)
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        return inverse.containsKey(value);
      }
    
      // Modification Operations
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V put(@ParametricNullness K key, @ParametricNullness V value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top