Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 431 for ContainsKey (0.15 sec)

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

        return Iterators.unmodifiableIterator(delegate.keySet().iterator());
      }
    
      @Override
      public int size() {
        return delegate.size();
      }
    
      @Override
      public boolean containsKey(@CheckForNull Object key) {
        return delegate.containsKey(key);
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        return delegate.get(key);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            when:
            Sign signTask = signing.sign(jar).first()
    
            then:
            def outputPath = jar.outputs.files.singleFile.toPath().toAbsolutePath().toString()
            signTask.signaturesByKey.containsKey(outputPath)
            signTask.signaturesByKey.get(outputPath) == signTask.singleSignature
        }
    
        def "files to sign that do not exist are ignored"() {
            given:
            useJavadocAndSourceJars()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/StandardTable.java

          this.rowKey = checkNotNull(rowKey);
        }
    
        @CheckForNull Map<C, V> backingRowMap;
    
        final void updateBackingRowMapField() {
          if (backingRowMap == null || (backingRowMap.isEmpty() && backingMap.containsKey(rowKey))) {
            backingRowMap = computeBackingRowMap();
          }
        }
    
        @CheckForNull
        Map<C, V> computeBackingRowMap() {
          return backingMap.get(rowKey);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.test-retry.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("org.gradle.test-retry")
    }
    
    if (System.getenv().containsKey("CI")) {
        tasks.withType<Test>().configureEach {
            retry {
                maxRetries.set(2)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 06:43:17 UTC 2023
    - 810 bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableEnumMap.java

        return delegate.keySet().spliterator();
      }
    
      @Override
      public int size() {
        return delegate.size();
      }
    
      @Override
      public boolean containsKey(@CheckForNull Object key) {
        return delegate.containsKey(key);
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        return delegate.get(key);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                        if (!currentAbsolutePath.equals(previousAbsolutePath)) {
                            if (!currentSnapshots.containsKey(previousAbsolutePath)) {
                                removed();
                            } else if (!previousSnapshots.containsKey(currentAbsolutePath)) {
                                added();
                            } else {
                                removed();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistry.java

            this.templateOperationFactory = templateOperationFactory;
            add(defaultType);
            add(converter);
        }
    
        public void add(BuildInitializer descriptor) {
            if (registeredProjectDescriptors.containsKey(descriptor.getId())) {
                throw new GradleException(String.format("ProjectDescriptor with ID '%s' already registered.", descriptor.getId()));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 20:06:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BooleanBuildOptionTest.groovy

            when:
            def testOption = new TestOption(GRADLE_PROPERTY)
            testOption.configure(commandLineParser)
    
            then:
            !commandLineParser.optionsByString.containsKey(LONG_OPTION)
            !commandLineParser.optionsByString.containsKey(SHORT_OPTION)
    
            when:
            testOption = new TestOption(GRADLE_PROPERTY, BooleanCommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION, DISABLED_DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

            anyStarted = true;
            lock.lock();
            try {
                failIfStopped();
                if (!deployments.containsKey(name)) {
                    return buildOperationRunner.call(new CallableBuildOperation<T>() {
                        @Override
                        public BuildOperationDescriptor.Builder description() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            expected.each {
                String key = StringUtils.substringBefore(it, "@")
                String conf = StringUtils.substringAfter(it, "@") + "->default"
                assert dependencies.containsKey(key)
                assert dependencies[key].hasConf(conf)
            }
            true
        }
    
        def assertConfigurationDependsOn(String configuration, String[] expected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top