Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 272 for trailing (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10)
        public String thumbnail;
    
        /**
         * Types of crawling failures to ignore during crawling operations.
         * Specified failure types will not be logged or counted as errors.
         */
        @Size(max = 1000)
        public String ignoreFailureType;
    
        /**
         * Threshold for failure count before stopping crawling of a URL.
         * Set to -1 to disable the threshold check.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            assertTrue(updateJobLogStatusCalled[0]);
    
            // Assert error message in result
            assertTrue(result.contains("Crawling info deletion failed"));
        }
    
        // Test with zero days (should still execute)
        public void test_execute_zeroDays() {
            // Setup tracking variables
            final boolean[] deleteCrawlingInfoCalled = { false };
            final boolean[] deleteSearchLogCalled = { false };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.19.md

        - [KubeSchedulerConfiguration graduates to Beta](#kubeschedulerconfiguration-graduates-to-beta)
        - [CSI Migration - AzureDisk and vSphere (beta)](#csi-migration---azuredisk-and-vsphere-beta)
        - [Storage capacity tracking](#storage-capacity-tracking)
        - [CSI Volume health monitoring](#csi-volume-health-monitoring)
        - [General ephemeral volumes](#general-ephemeral-volumes)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                }
            });
        }
    
        /**
         * Marks statistics tracking as complete for the specified crawler object.
         * Decrements the reference count and if it reaches zero, removes the
         * statistics object from cache and outputs the final statistics.
         *
         * @param keyObj the crawler object to complete tracking for
         */
        public void done(final Object keyObj) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing duplicate host entries,
     * including tracking information for optimistic locking and audit trails.
     * Duplicate hosts are used to define which domains should be treated as the same site for crawling purposes.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    - kube-proxy: os exit when CleanupAndExit is set to true ([#76732](https://github.com/kubernetes/kubernetes/pull/76732), [@JieJhih](https://github.com/JieJhih))
    - Kubernetes will now allow trailing dots in the externalName of Services of type ExternalName. ([#78385](https://github.com/kubernetes/kubernetes/pull/78385), [@thz](https://github.com/thz))
    
    ### Node
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/enhancement.yaml

    name: Enhancement Tracking Issue
    description: Provide supporting details for a feature in development
    labels: kind/feature
    body:
      - type: textarea
        id: feature
        attributes:
          label: What would you like to be added?
          description: |
            Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing data crawling configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing data config entries,
     * including tracking information for optimistic locking and audit trails.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing web authentication entries,
     * including tracking information for optimistic locking and audit trails.
     * Web authentication configurations define credentials for accessing protected web resources during crawling.
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing request header entries,
     * including tracking information for optimistic locking and audit trails.
     * Request headers are used to customize HTTP requests sent during web crawling operations.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top