Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Schily (0.08 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

         * @return the response data
         * @throws CrawlingAccessException if unable to access the URI
         * @throws ChildUrlsException if the URI represents a directory with child URLs
         */
        protected ResponseData getResponseData(final String uri, final boolean includeContent) {
            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/DomUtil.java

            buf.append(tag);
            buf.append('>');
        }
    
        /**
         * Appends the string representation of a {@link NodeList}.
         *
         * @param children
         *            The child nodes. Must not be {@literal null}.
         * @param buf
         *            The string buffer. Must not be {@literal null}.
         */
        public static void appendChildren(final NodeList children, final StringBuilder buf) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                logger.warn("Ignored child URL: childUrl={}, parentUri={}", attrValue, uri);
                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("URL conversion: original={}, converted={}", attrValue, u);
            }
            if (StringUtil.isNotBlank(u)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Adding child URL: url={}", u);
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java

                }
            }
    
            entry.markComplete();
        }
    
        /**
         * Handle directory change notification
         *
         * @param directoryPath directory path
         * @param childName child file name
         * @param changeType type of change
         */
        public void handleDirectoryChange(String directoryPath, String childName, DirectoryChangeNotifier.DirectoryChangeType changeType) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append('[');
                boolean first = true;
                for (final Object child : (String[]) obj) {
                    if (first) {
                        first = false;
                    } else {
                        buf.append(',');
                    }
                    buf.append(escapeJson(child));
                }
                buf.append(']');
            } else if (obj instanceof List<?>) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

     *
     * <p>The implementation uses an executor service for concurrent processing of file operations and maintains
     * a cache of URLs to be deleted for batch processing. It handles redirect following and child URL discovery
     * during the crawling process.</p>
     */
    public class FileListIndexUpdateCallbackImpl implements IndexUpdateCallback {
    
        /** Logger for this class. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 29.7K bytes
    - Viewed (3)
  7. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            ACCESSED,
            /** Indicates that an exception occurred during URL access. */
            ACCESS_EXCEPTION,
            /** Indicates that a child URL was discovered. */
            CHILD_URL,
            /** Indicates that multiple child URLs were discovered. */
            CHILD_URLS,
            /** Indicates that a URL was evaluated for crawling eligibility. */
            EVALUATED,
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. docs/SMB3_IMPLEMENTATION_PLAN.md

    ```
    
    #### 4.2 Implementation Tasks
    - [ ] Extend lease implementation for directories
    - [ ] Implement directory metadata caching
    - [ ] Add directory change notification integration
    - [ ] Create parent-child lease relationships
    - [ ] Implement directory lease break handling
    - [ ] Add directory enumeration caching
    
    #### 4.3 Integration Points
    - Extend `SmbFile` for directory lease support
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** File write extended attributes access right */
        int FILE_WRITE_EA = 0x00000010; // 5
        /** File execute access right */
        int FILE_EXECUTE = 0x00000020; // 6
        /** File delete child access right */
        int FILE_DELETE = 0x00000040; // 7
        /** File read attributes access right */
        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /** File write attributes access right */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

         * @return the response data containing metadata and optionally content
         * @throws CrawlingAccessException if an error occurs while accessing the resource
         * @throws ChildUrlsException if the URI represents a directory with child URLs
         */
        protected ResponseData getResponseData(final String uri, final boolean includeContent) {
            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top