- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 311 for 1500 (0.01 sec)
-
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
} } public void test_setMonitorInterval() { jobHelper.setMonitorInterval(3600); assertEquals(3600, jobHelper.monitorInterval); jobHelper.setMonitorInterval(1800); assertEquals(1800, jobHelper.monitorInterval); } public void test_getJobRuntime_null() { assertNull(jobHelper.getJobRuntime()); } public void test_monitorTarget_expired_withoutEndTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
/** * The unique identifier of the failure URL record being edited. * This is a required field for identifying which failure record to update. */ @Required @Size(max = 1000) public String id; /** * The URL that failed during crawling. * This is a required field containing the actual URL that encountered an error. */ @Required public String url;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java
public int crudMode; /** Type of the search log entry */ @Required @Size(max = 10) public String logType; /** Unique identifier for the search log entry */ @Required @Size(max = 1000) public String id; /** * Default constructor for EditForm. */ public EditForm() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
assertTrue(memory1 >= 0); // Create some objects to change memory usage @SuppressWarnings("unused") String[] largeArray = new String[1000]; for (int i = 0; i < 1000; i++) { largeArray[i] = "test" + i; } long memory2 = MemoryUtil.getUsedMemory(); assertTrue(memory2 >= 0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
private static final Runnable DONE = new DoNothingRunnable(); private static final Runnable PARKED = new DoNothingRunnable(); // Why 1000? WHY NOT! private static final int MAX_BUSY_WAIT_SPINS = 1000; @Override public final void run() { /* * Set runner thread before checking isDone(). If we were to check isDone() first, the task
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 10K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
assertThat(buffer.readByteString()).isEqualTo("0D04c27B0302".decodeHex()) } @Test fun `decode raw sequence`() { val buffer = Buffer() .write("300A".decodeHex()) .write("1505".decodeHex()) .write("Smith".encodeUtf8()) .write("01".decodeHex()) .write("01".decodeHex()) .write("FF".decodeHex()) val derReader = DerReader(buffer)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
/** * The name of the web configuration. */ @Required @Size(max = 200) public String name; /** * The description of the web configuration. */ @Size(max = 1000) public String description; /** * The URLs to be crawled by this web configuration. */ @Required @UriType(protocolType = ProtocolType.WEB)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
.build() try { for (i in 1..2) { // Space out traffic to make it easier to demarcate. sendTestRequest(fbRequest) Thread.sleep(1000) sendTestRequest(twitterRequest) Thread.sleep(1000) sendTestRequest(googleRequest) Thread.sleep(2000) } } finally { client.connectionPool.evictAll()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
/** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The stopword to be added to the dictionary */ @Required @Size(max = 1000) public String input; /** * Initializes the form with default values for creating a new stopword entry. */ public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
super(); } /** * The unique identifier of the user being edited. * This is a required field for identifying which user to update. */ @Required @Size(max = 1000) public String id; /** * The version number of the user for optimistic locking. * This field is required to prevent concurrent modification conflicts
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)