- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 352 for unavailable (0.38 sec)
-
src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp
<label for="available" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.available"/></label> <div class="col-sm-9"> <la:errors property="available"/> <la:select styleId="available" property="available" styleClass="form-control">Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig.jsp
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
*/ public String crawler; /** * Whether job logging is enabled. */ public String jobLogging; /** * Whether the scheduled job is available/enabled. */ public String available; /** * The sort order for displaying this scheduled job. */ @Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailureRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
this.allRecordCount = allRecordCount; } /** * Gets the total number of pages available for pagination. * * @return the total page count */ public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages available for pagination. * * @param allPageCount the total page count to set */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacDataInputStreamTest.java
pdis.align(0); assertEquals(3, pdis.available()); } @Test public void testAvailable() throws IOException { byte[] data = new byte[] { 0x01, 0x02, 0x03, 0x04 }; PacDataInputStream pdis = createInputStream(data); assertEquals(4, pdis.available()); pdis.readByte(); assertEquals(3, pdis.available()); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/AuthenticationProvider.java
/** * Gets the session key after successful authentication * * @return the session key or null if not available */ byte[] getSessionKey(); /** * Gets the signing key for SMB2/3 * * @return the signing key or null if not available */ byte[] getSigningKey(); /** * Validates authentication credentials *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 3.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
/** Factory for creating and managing ingesters */ private IngestFactory ingestFactory = null; /** * Initializes the processor after dependency injection. * Sets up the ingest factory if available in the component system. */ @PostConstruct public void init() { if (ComponentUtil.hasIngestFactory()) { ingestFactory = ComponentUtil.getIngestFactory(); } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/DataConfigDbm.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 13.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java
// Test that available() delegates to underlying stream byte[] data = "Test data".getBytes(); InputStream underlyingStream = new ByteArrayInputStream(data); IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream); assertEquals(9, stream.available()); stream.read(); assertEquals(8, stream.available()); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.6K bytes - Viewed (0)