Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,949 for segfault (0.05 sec)

  1. src/main/java/org/codelibs/fess/validation/CronExpression.java

        /**
         * The error message when validation fails.
         * @return the error message
         */
        String message() default "{org.lastaflute.validator.constraints.CronExpression.message}";
    
        /**
         * The validation groups this constraint belongs to.
         * @return the groups
         */
        Class<?>[] groups() default {};
    
        /**
         * The payload associated with this constraint.
         * @return the payload
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertTrue(DefaultMirrorSelector.matchesLayout("default", "default,legacy"));
    
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "legacy,!default"));
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "!default,legacy"));
    
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "*,!default"));
            assertFalse(DefaultMirrorSelector.matchesLayout("default", "!default,*"));
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor for file configuration pager.
         * Creates a new instance with default values.
         */
        public FileConfigPager() {
            // Default constructor
        }
    
        /** Default page size for pagination */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number for pagination */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

        public String versionNo;
    
        /**
         * Default constructor for RelatedQueryPager.
         * Initializes a new instance with default values for pagination
         * and related query fields.
         */
        public RelatedQueryPager() {
            // Default constructor - fields will be initialized to default values
        }
    
        /**
         * Clears all pager data and resets to default values.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

                return generateCalled;
            }
    
            public boolean isDestroyCalled() {
                return destroyCalled;
            }
        }
    
        public void test_isAvailable() {
            // Test default implementation
            generator = new TestThumbnailGenerator();
            assertTrue(generator.isAvailable());
        }
    
        public void test_isTarget() {
            // Test isTarget method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

     * triggers all preceding phases, ensuring that each step of the build process is
     * completed in the correct order. The three main lifecycles in Maven are
     * {@link #DEFAULT default}, {@link #CLEAN clean}, and {@link #SITE site}, with the
     * {@code default} lifecycle being the most commonly used for project builds.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Lifecycle extends ExtensibleEnum {
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  7. .github/workflows/replication.yaml

              make test-replication
    
          - name: Test MinIO IDP for automatic site replication
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-site-replication-minio
    
          - name: Test Versioning
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. cmd/globals.go

    	// Indicates if server code should go through testing path.
    	globalIsTesting = false
    
    	// This flag is set to 'true' by default
    	globalBrowserEnabled = true
    
    	// Custom browser redirect URL, not set by default
    	// and it is automatically deduced.
    	globalBrowserRedirectURL *xnet.URL
    
    	// Disable redirect, default is enabled.
    	globalBrowserRedirect bool
    
    	// globalBrowserConfig Browser user configurable settings
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 16.2K bytes
    - Viewed (1)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java

         *
         * @param message the debug message to be logged
         */
        default void debug(String message) {
            log(Level.DEBUG, message);
        }
    
        /**
         * Logs a debug message with an associated exception.
         *
         * @param message the debug message to be logged
         * @param error the associated exception
         */
        default void debug(@Nonnull String message, @Nullable Throwable error) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        /**
         * Creates a new pager instance with default settings.
         */
        public CrawlingInfoPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number (1-based).
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top