Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for currentDate (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/reflect/ClassPath.java

          }
        }
    
        private void scanDirectory(File directory, ImmutableSet.Builder<ResourceInfo> builder)
            throws IOException {
          Set<File> currentPath = new HashSet<>();
          currentPath.add(directory.getCanonicalFile());
          scanDirectory(directory, "", currentPath, builder);
        }
    
        /**
         * Recursively scan the given directory, adding resources for each file encountered. Symlinks
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            final boolean previousState = cachedAvailability != null ? cachedAvailability : false;
            final boolean currentState = checkAvailabilityNow();
            cachedAvailability = currentState;
    
            if (previousState != currentState) {
                logger.info("{} availability changed: {} -> {}", getName(), previousState, currentState);
            } else if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top