Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for getOrDefault (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                                    if (phase == null) {
                                        continue;
                                    }
                                    String tmpResolvedPhase = plan.aliases().getOrDefault(phase, phase);
                                    String resolvedPhase = tmpResolvedPhase.startsWith(AT)
                                            ? tmpResolvedPhase.substring(AT.length())
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         *
         * @param index the index configuration name
         */
        protected void sendConfigFiles(final String index) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            configListMap.getOrDefault(index, Collections.emptyList()).forEach(path -> {
                String source = null;
                final String filePath = indexConfigPath + "/" + index + "/" + path;
                final String dictionaryPath;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
  3. guava/src/com/google/common/cache/LocalCache.java

        if (value == null) {
          globalStatsCounter.recordMisses(1);
        } else {
          globalStatsCounter.recordHits(1);
        }
        return value;
      }
    
      @Override
      public @Nullable V getOrDefault(@Nullable Object key, @Nullable V defaultValue) {
        V result = get(key);
        return (result != null) ? result : defaultValue;
      }
    
      V getOrLoad(K key) throws ExecutionException {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
Back to top