- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 543 for 1010 (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java
- smbAuthentication = new SmbAuthentication();
- smbAuthentication.setServer("hoge");
- smbAuthentication.setPort(1000);
- assertEquals("smb1://hoge:1000/", smbAuthentication.getPathPrefix());
- smbAuthentication = new SmbAuthentication();
- smbAuthentication.setPort(1000);
- assertEquals("smb1://", smbAuthentication.getPathPrefix());
- }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java
- fooAuth.setServer("foo");
- fooAuth.setPort(1000);
- smbAuthenticationHolder.add(fooAuth);
- assertEquals(hogeAuth, smbAuthenticationHolder.get("smb1://hoge/"));
- assertEquals(fugaAuth, smbAuthenticationHolder.get("smb1://fuga/"));
- assertEquals(fooAuth, smbAuthenticationHolder.get("smb1://foo:1000/"));
- assertEquals(hogeAuth, smbAuthenticationHolder.get("smb1://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) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
- encrypted = false;
- value = System.currentTimeMillis() / 1000 + "\nrole1";
- roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
- assertEquals(1, roleSet.size());
- assertTrue(roleSet.contains("role1"));
- encrypted = false;
- value = System.currentTimeMillis() / 1000 + "\nrole1,role2";
- roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 14.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt
- clientReader.processNextFrame()
- callback.assertClosing(1000, "Hello")
- }
- @Test fun closeIncompleteCallsCallback() {
- data.write("880703e948656c6c6f".decodeHex()) // Close with code and reason
- data.close()
- clientReader.processNextFrame()
- callback.assertClosing(1001, "Hello")
- }
- @Test fun closeOutOfRangeThrows() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 14.4K bytes - Viewed (1) -
src/archive/tar/reader_test.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 03 15:48:09 UTC 2024 - 46.9K bytes - Viewed (0) -
cmd/storage-datatypes_test.go
- for i := 0; i < b.N; i++ {
- err := v.DecodeMsg(dc)
- if err != nil {
- b.Fatal(err)
- }
- }
- }
- func BenchmarkDecodeDiskInfoMsgp(b *testing.B) {
- v := DiskInfo{
- Total: 1000,
- Free: 1000,
- Used: 1000,
- FSType: "xfs",
- RootDisk: true,
- Healing: true,
- Endpoint: "http://localhost:9001/tmp/drive1",
- MountPath: "/tmp/drive1",
- ID: "uuid",
- Error: "",
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 9.4K bytes - Viewed (0) -
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/dict/kuromoji/CreateForm.java
- @ValidateTypeFailure
- public Integer crudMode;
- @Required
- @Size(max = 1000)
- public String token;
- @Required
- @Size(max = 1000)
- public String segmentation;
- @Required
- @Size(max = 1000)
- public String reading;
- @Required
- @Size(max = 1000)
- public String pos;
- public void initialize() {
- crudMode = CrudMode.CREATE;
- }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.4K bytes - Viewed (0) -
cni/pkg/install/testdata/bridge.conf
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jul 01 20:47:54 UTC 2021 - 235 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)