Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 439 for ContainsKey (0.31 sec)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/entity/ParamMap.java

        }
    
        @Override
        public boolean isEmpty() {
            return parent.isEmpty();
        }
    
        @Override
        public boolean containsKey(final Object key) {
            if (parent.containsKey(key)) {
                return true;
            }
            return parent.containsKey(toCamelCase(key));
        }
    
        @Override
        public boolean containsValue(final Object value) {
            return parent.containsValue(value);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

            String name = jApiMethod.getName();
            if (!pattern.matcher(name).matches()) {
                return false;
            }
            return upgradedMethods.containsKey(AccessorKey.ofOldMethod(jApiMethod));
        }
    
        private static boolean isCurrentGetterOfUpgradedProperty(JApiMethod jApiMethod, Map<AccessorKey, UpgradedProperty> currentMethods) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

            final Set<String> analyzerNames = analyzerMap.get(analyzerSettingsIndexName);
            final String analyzerName;
            if (StringUtil.isNotBlank(field) && fieldAnalyzerMapping.containsKey(field)
                    && fieldAnalyzerMapping.get(field).readingAnalyzer != null) {
                analyzerName = fieldAnalyzerMapping.get(field).readingAnalyzer;
            } else {
                analyzerName = READING_ANALYZER;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

            projectDir.file("$outputDirectory/testng-results.xml")
        }
    
        private def findTestClass(String testClass) {
            def testClasses = findTestClasses()
            if (!testClasses.containsKey(testClass)) {
                throw new AssertionError("Could not find test class ${testClass}. Found ${testClasses.keySet()}")
            }
            testClasses[testClass]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Instants.groovy

                long waitMillis
                while (!timePoints.containsKey(name) && (waitMillis = expiry - monotonicClockMillis()) > 0) {
                    logger.log "waiting for instant '$name' ..."
                    lock.wait(waitMillis)
                }
                if (timePoints.containsKey(name)) {
                    return
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PropertyAccessorExtractionContext.java

                for (Annotation annotation : method.getDeclaredAnnotations()) {
                    // Make sure more specific annotation doesn't get overwritten with less specific one
                    if (!annotations.containsKey(annotation.annotationType())) {
                        annotations.put(annotation.annotationType(), annotation);
                    }
                }
            }
            return Collections.unmodifiableMap(annotations);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/IntegerBuildOptionTest.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, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

            if (ratingsResponse != null) {
              if (ratingsResponse.containsKey("ratings")) {
                JsonObject ratings = ratingsResponse.getJsonObject("ratings");
                if (ratings.containsKey("Reviewer1")){
              	  starsReviewer1 = ratings.getInt("Reviewer1");
                }
                if (ratings.containsKey("Reviewer2")){
                  starsReviewer2 = ratings.getInt("Reviewer2");
                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top