Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 431 for ContainsKey (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. android/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
    - 29.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.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
    - 6K bytes
    - Viewed (0)
Back to top