Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isValidating (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

            this.ignoringElementContentWhitespace = ignoringElementContentWhitespace;
        }
    
        /**
         * Returns the validating.
         *
         * @return the validating
         */
        public boolean isValidating() {
            return validating;
        }
    
        /**
         * Sets the validating.
         *
         * @param validating the validating to set
         */
        public void setValidating(final boolean validating) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

            }
        }
    
        /**
         * Invalidate read cache for a file path
         *
         * @param path file path
         */
        private void invalidateReadCache(String path) {
            log.debug("Invalidating read cache for path: {}", path);
    
            WeakReference<SmbFile> ref = fileCache.get(path);
            if (ref != null) {
                SmbFile file = ref.get();
                if (file != null) {
                    try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            if (StringUtil.isBlank(pipeline)) {
                return OptionalThing.empty();
            }
            return OptionalThing.of(pipeline);
        }
    
        /**
         * Refreshes the crawling configuration cache by invalidating all cached entries.
         * This forces the next access to reload configurations from the underlying services.
         */
        public void refresh() {
            crawlingConfigCache.invalidateAll();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top