Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 431 for ContainsKey (0.16 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testHeadMapInclusive() {
        assertTrue(navigableMap.headMap(a.getKey(), true).containsKey(a.getKey()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testTailMapExclusive() {
        assertFalse(navigableMap.tailMap(a.getKey(), false).containsKey(a.getKey()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testHeadMapInclusive() {
        assertTrue(navigableMap.headMap(a.getKey(), true).containsKey(a.getKey()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testTailMapExclusive() {
        assertFalse(navigableMap.tailMap(a.getKey(), false).containsKey(a.getKey()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/DefaultAdhocSoftwareComponent.java

        }
    
        @Override
        public void withVariantsFromConfiguration(Configuration outgoingConfiguration, Action<? super ConfigurationVariantDetails> action) {
            checkNotObserved();
            if (!variants.containsKey(outgoingConfiguration)) {
                throw new InvalidUserDataException("Variant for configuration " + outgoingConfiguration.getName() + " does not exist in component " + componentName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultAttributes.java

            return attributes.size();
        }
    
        @Override
        public boolean isEmpty() {
            return attributes.isEmpty();
        }
    
        @Override
        public boolean containsKey(Object key) {
            return attributes.containsKey(key);
        }
    
        @Override
        public boolean containsValue(Object value) {
            return attributes.containsValue(value);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactory.java

            List<Object> key = asList(requested, from, constraint);
            if (!unresolvedDependencies.containsKey(key)) {
                unresolvedDependencies.put(key, new DefaultUnresolvedDependencyResult(requested, constraint, reason, from, failure));
            }
            return unresolvedDependencies.get(key);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

        }
    
        private ResultsStore getStoreForTest(PerformanceExperiment experiment) {
            buildTests();
            if (!tests.containsKey(experiment)) {
                throw new IllegalArgumentException(String.format("Unknown test '%s'.", experiment));
            }
            return tests.get(experiment);
        }
    
        private void buildTests() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/kotlin/settings.gradle.kts

    rootProject.name = "developer-ci-setup"
    // tag::developer-ci-setup[]
    val isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isPush = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 281 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/AbstractStructSchema.java

        }
    
        @Override
        public Collection<ModelProperty<?>> getProperties() {
            return properties.values();
        }
    
        @Override
        public boolean hasProperty(String name) {
            return properties.containsKey(name);
        }
    
        @Override
        public ModelProperty<?> getProperty(String name) {
            return properties.get(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/groovy/settings.gradle

    rootProject.name = 'developer-ci-setup'
    
    // tag::developer-ci-setup[]
    boolean isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            push = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 279 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

            for (Method method : clazz.getDeclaredMethods()) {
                if (isGetter(method)) {
                    String property = getPropertyName(method.getName());
                    if (getters.containsKey(property)) {
                        throwParameterValidationError(clazz, String.format("More than one getter for property %s was found.", property));
                    }
                    getters.put(property, method.getReturnType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top