Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 842 for unavailable (0.17 sec)

  1. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            assertEquals(longName + " is not available.", exception.getMessage());
            assertEquals(longName, exception.getComponentName());
        }
    
        public void test_messageFormatting() {
            // Test message formatting for different constructors
            ContainerNotAvailableException exception1 = new ContainerNotAvailableException("service1");
            assertEquals("service1 is not available.", exception1.getMessage());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

            super.tearDown();
        }
    
        // Test available() method
        public void test_available_withNoneSsoType() {
            currentSsoType = Constants.NONE;
            assertFalse(ssoManager.available());
        }
    
        public void test_available_withValidSsoType() {
            currentSsoType = "saml";
            assertTrue(ssoManager.available());
        }
    
        public void test_available_withEmptySsoType() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

         * Returns -1 if there is no offset available.
         * @return the current offset
         */
        int getCharacterOffset();
    
        /**
         * Returns the public ID of the XML
         * @return the public ID, or null if not available
         */
        String getPublicId();
    
        /**
         * Returns the system ID of the XML
         * @return the system ID, or null if not available
         */
        String getSystemId();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/SsoManager.java

         */
        public SsoManager() {
            // Default constructor
        }
    
        /**
         * Checks whether SSO authentication is available and configured.
         *
         * @return true if SSO is configured and available, false otherwise
         */
        public boolean available() {
            final String ssoType = getSsoType();
            if (logger.isDebugEnabled()) {
                logger.debug("sso.type: {}", ssoType);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        /** Default current page number */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records available */
        private int allRecordCount;
    
        /** Total number of pages available */
        private int allPageCount;
    
        /** Flag indicating if previous page exists */
        private boolean existPrePage;
    
        /** Flag indicating if next page exists */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/UserPager.java

        private int allRecordCount;
    
        /** The total number of pages */
        private int allPageCount;
    
        /** Whether there is a previous page available */
        private boolean existPrePage;
    
        /** Whether there is a next page available */
        private boolean existNextPage;
    
        /** List of page numbers for navigation */
        private List<Integer> pageNumberList;
    
        /** Number of records per page */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. api/maven-api-di/src/main/java/org/apache/maven/api/di/Typed.java

        /**
         * Specifies the types that should be considered for dependency injection.
         * <p>
         * When specified, only the listed types will be available for injection,
         * even if the class implements or extends other types. If empty, the
         * default behavior is to make all supertypes available for injection.
         * <p>
         * Example:
         * <pre>
         * {@literal @}Typed({Service.class, Monitored.class})
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        /** Default current page number when pagination starts. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records available across all pages. */
        private int allRecordCount;
    
        /** Total number of pages available for pagination. */
        private int allPageCount;
    
        /** Flag indicating whether a previous page exists. */
        private boolean existPrePage;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java

        public Boolean getAvailable() {
            checkSpecifiedProperty("available");
            return available;
        }
    
        public void setAvailable(Boolean value) {
            registerModifiedProperty("available");
            this.available = value;
        }
    
        public Float getBoost() {
            checkSpecifiedProperty("boost");
            return boost;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java

        public Boolean getAvailable() {
            checkSpecifiedProperty("available");
            return available;
        }
    
        public void setAvailable(Boolean value) {
            registerModifiedProperty("available");
            this.available = value;
        }
    
        public Boolean getCrawler() {
            checkSpecifiedProperty("crawler");
            return crawler;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top