- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 552 for 1800 (0.07 sec)
-
src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java
public void test_doneBeforeResolve() throws Exception { final Deferred<SuggestResponse> deferred = new Deferred<>(); Thread th = new Thread(() -> { try { Thread.sleep(1000); } catch (InterruptedException ignore) {} deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null)); }); th.start();
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
public Integer crudMode; @Required @Size(max = 1000) public String regex; @Size(max = 1000) public String replacement; @Required public String processType; @Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; @Size(max = 1000) public String createdBy; @ValidateTypeFailure
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java
import jakarta.validation.constraints.Size; /** * @author Keiichi Watanabe */ public class EditForm extends CreateForm { @Required @Size(max = 1000) public String id; @Size(max = 1000) public String updatedBy; @ValidateTypeFailure public Long updatedTime; @Required @ValidateTypeFailure public Long versionNo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java
import jakarta.validation.constraints.Size; /** * @author Keiichi Watanabe */ public class EditForm extends CreateForm { @Required @Size(max = 1000) public String id; @Size(max = 1000) public String updatedBy; @ValidateTypeFailure public Long updatedTime; @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.1K bytes - Viewed (0) -
cmd/streaming-signature-v4_test.go
} // List of readers used. readers := []io.Reader{ // Test - 1 bytes.NewReader([]byte("1000;chunk-signature=111123333333333333334444211\r\n")), // Test - 2 bytes.NewReader([]byte("1000;")), // Test - 3 bytes.NewReader([]byte(fmt.Sprintf("%4097d", 1))), // Test - 4 bytes.NewReader([]byte("1000;chunk-signature=111123333333333333334444211\r\n")), } testCases := []testCase{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
} else if (size.divide(ONE_PB_BI).compareTo(BigInteger.ZERO) > 0) { displaySize = new BigDecimal(size.divide(ONE_TB_BI)).divide(BigDecimal.valueOf(1000)) + "PB"; } else if (size.divide(ONE_TB_BI).compareTo(BigInteger.ZERO) > 0) { displaySize = new BigDecimal(size.divide(ONE_GB_BI)).divide(BigDecimal.valueOf(1000)) + "TB";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/throttle/README.md
Example: Limit a MinIO cluster to accept at max 1600 simultaneous S3 API requests across all nodes of the cluster. ```sh export MINIO_API_REQUESTS_MAX=1600 export MINIO_ROOT_USER=your-access-key export MINIO_ROOT_PASSWORD=your-secret-key minio server http://server{1...8}/mnt/hdd{1...16} ``` or ```sh mc admin config set myminio/ api requests_max=1600 mc admin service restart myminio/ ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 1.5K bytes - Viewed (1) -
src/test/java/org/codelibs/core/convert/ShortConversionUtilTest.java
/** * @throws Exception */ public void testToShort() throws Exception { assertEquals(new Short("1000"), ShortConversionUtil.toShort("1,000")); } /** * @throws Exception */ public void testToPrimitiveShort() throws Exception { assertEquals(1000, ShortConversionUtil.toPrimitiveShort("1,000")); } /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java
fooAuth.setServer("foo"); fooAuth.setPort(1000); smbAuthenticationHolder.add(fooAuth); assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/")); assertEquals(fugaAuth, smbAuthenticationHolder.get("smb://fuga/")); assertEquals(fooAuth, smbAuthenticationHolder.get("smb://foo:1000/")); assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/text.txt"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/AutobahnTester.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0)