- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 841 for Unavailable (0.32 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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)