Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for step (0.03 sec)

  1. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            assertFalse(cacheEntry.isComplete());
    
            // Step 3: Verify can cache directory listing
            assertTrue(directoryLeaseManager.canCacheDirectoryListing(directoryPath));
    
            // Step 4: Initially no cached listing
            assertNull(directoryLeaseManager.getCachedDirectoryListing(directoryPath));
    
            // Step 5: Simulate directory enumeration and update cache
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. MIGRATION.md

    #### Migration Steps
    
    **Step 1: Set Up Fess Crawling**
    
    1. In Fess Admin, create a new Web crawling configuration
    2. Add your website URL as the starting point
    3. Configure crawl depth and URL patterns
    4. Start crawling
    
    **Step 2: Replace JavaScript Code**
    
    Replace existing GSS/CSE code:
    
    ```javascript
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessor.java

    /**
     * NullResponseProcessor is a class that implements the ResponseProcessor interface.
     * It provides a no-op implementation for processing response data.
     * This class can be used when you want to skip the response processing step in a crawler.
     *
     * @author kuma
     */
    public class NullResponseProcessor implements ResponseProcessor {
    
        /**
         * Creates a new NullResponseProcessor instance.
         */
        public NullResponseProcessor() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v3
    
        # ℹ️ Command-line programs to run using the OS shell.
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_start.jsp

                                    <button type="submit" class="btn btn-default" name="index"
                                            value="<la:message key="labels.wizard_button_finish"/>">
                                        <i class="fa fa-step-forward" aria-hidden="true"></i>
                                        <la:message key="labels.wizard_button_finish"/>
                                    </button>
                                </div>
                            </div>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. ADDING_NEW_LANGUAGE.md

    - **Language + Region**: `fess_label_pt_BR.properties`, `fess_label_zh_CN.properties`, `fess_label_zh_TW.properties`
    - **Special cases**: Kurdish uses `fess_label_ckb_IQ.properties`
    
    ## Step-by-Step Guide
    
    ### 1. Create Language Resource Files
    
    Copy the base English files as templates:
    
    ```bash
    cd src/main/resources
    
    # Copy label file (~1,056 translation entries)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. CLAUDE.md

    **Key Methods**:
    ```java
    String execute()                // Start crawling, return session ID
    void addUrl(String url)         // Add URL to queue
    void cleanup(String sessionId)  // Clean up session
    void stop()                     // Stop gracefully
    ```
    
    **Key Fields**: `crawlerContext`, `urlFilter`, `intervalController`, `clientFactory`, `ruleManager`
    
    ### CrawlerContext (`CrawlerContext.java`)
    
    Execution context and configuration.
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

            this.newInput = newInput;
        }
    
        /**
         * Gets the new output stem.
         *
         * @return The new output stem.
         */
        public String getNewOutput() {
            return newOutput;
        }
    
        /**
         * Sets the new output stem.
         *
         * @param newOutputs The new output stem.
         */
        public void setNewOutput(final String newOutputs) {
            newOutput = newOutputs;
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

     * UrlFilter, RuleManager, CrawlerContainer, IntervalController, and CrawlerClientFactory,
     * to perform its tasks.
     *
     * <p>The crawling process involves the following steps:
     * <ol>
     *   <li>Initialization: Sets up the crawler context and initializes the URL filter.</li>
     *   <li>Thread Creation: Creates a group of crawler threads to perform the actual crawling.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 17K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/DownloadBody.java

    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.DownloadForm;
    
    /**
     * Download body for stop words dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading stop words dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top