Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 543 for 1010 (0.07 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java

    1. smbAuthentication = new SmbAuthentication();
    2. smbAuthentication.setServer("hoge");
    3. smbAuthentication.setPort(1000);
    4. assertEquals("smb1://hoge:1000/", smbAuthentication.getPathPrefix());
    5.  
    6. smbAuthentication = new SmbAuthentication();
    7. smbAuthentication.setPort(1000);
    8. assertEquals("smb1://", smbAuthentication.getPathPrefix());
    9. }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java

    1. fooAuth.setServer("foo");
    2. fooAuth.setPort(1000);
    3. smbAuthenticationHolder.add(fooAuth);
    4.  
    5. assertEquals(hogeAuth, smbAuthenticationHolder.get("smb1://hoge/"));
    6. assertEquals(fugaAuth, smbAuthenticationHolder.get("smb1://fuga/"));
    7. assertEquals(fooAuth, smbAuthenticationHolder.get("smb1://foo:1000/"));
    8. 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)
  3. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

    1. encrypted = false;
    2. value = System.currentTimeMillis() / 1000 + "\nrole1";
    3. roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
    4. assertEquals(1, roleSet.size());
    5. assertTrue(roleSet.contains("role1"));
    6.  
    7. encrypted = false;
    8. value = System.currentTimeMillis() / 1000 + "\nrole1,role2";
    9. 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)
  4. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

    1. clientReader.processNextFrame()
    2. callback.assertClosing(1000, "Hello")
    3. }
    4.  
    5. @Test fun closeIncompleteCallsCallback() {
    6. data.write("880703e948656c6c6f".decodeHex()) // Close with code and reason
    7. data.close()
    8. clientReader.processNextFrame()
    9. callback.assertClosing(1001, "Hello")
    10. }
    11.  
    12. @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)
  5. src/archive/tar/reader_test.go

    1. Mode: 420,
    2. Uid: 1000,
    3. Gid: 1000,
    4. Size: 200,
    5. ModTime: time.Unix(1392395740, 0),
    6. Typeflag: 0x53,
    7. Linkname: "",
    8. Uname: "david",
    9. Gname: "david",
    10. Devmajor: 0,
    11. Devminor: 0,
    12. Format: FormatGNU,
    13. }, {
    14. Name: "sparse-posix-0.0",
    15. Mode: 420,
    16. Uid: 1000,
    17. Gid: 1000,
    18. Size: 200,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. cmd/storage-datatypes_test.go

    1. for i := 0; i < b.N; i++ {
    2. err := v.DecodeMsg(dc)
    3. if err != nil {
    4. b.Fatal(err)
    5. }
    6. }
    7. }
    8.  
    9. func BenchmarkDecodeDiskInfoMsgp(b *testing.B) {
    10. v := DiskInfo{
    11. Total: 1000,
    12. Free: 1000,
    13. Used: 1000,
    14. FSType: "xfs",
    15. RootDisk: true,
    16. Healing: true,
    17. Endpoint: "http://localhost:9001/tmp/drive1",
    18. MountPath: "/tmp/drive1",
    19. ID: "uuid",
    20. Error: "",
    21. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java

    1. public void test_doneBeforeResolve() throws Exception {
    2. final Deferred<SuggestResponse> deferred = new Deferred<>();
    3.  
    4. Thread th = new Thread(() -> {
    5. try {
    6. Thread.sleep(1000);
    7. } catch (InterruptedException ignore) {}
    8. deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null));
    9. });
    10. 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)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

    1. @ValidateTypeFailure
    2. public Integer crudMode;
    3.  
    4. @Required
    5. @Size(max = 1000)
    6. public String token;
    7.  
    8. @Required
    9. @Size(max = 1000)
    10. public String segmentation;
    11.  
    12. @Required
    13. @Size(max = 1000)
    14. public String reading;
    15.  
    16. @Required
    17. @Size(max = 1000)
    18. public String pos;
    19.  
    20. public void initialize() {
    21. crudMode = CrudMode.CREATE;
    22. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. cni/pkg/install/testdata/bridge.conf

    1. {
    2. "cniVersion": "0.4.0",
    3. "name": "dbnet",
    4. "type": "bridge",
    5. "bridge": "cni0",
    6. "ipam": {
    7. "type": "host-local",
    8. "subnet": "10.1.0.0/16",
    9. "gateway": "10.1.0.1"
    10. },
    11. "dns": {
    12. "nameservers": [ "10.1.0.1" ]
    13. }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 235 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

    1. public Integer crudMode;
    2.  
    3. @Required
    4. @Size(max = 1000)
    5. public String regex;
    6.  
    7. @Size(max = 1000)
    8. public String replacement;
    9.  
    10. @Required
    11. public String processType;
    12.  
    13. @Required
    14. @Min(value = 0)
    15. @Max(value = 2147483647)
    16. @ValidateTypeFailure
    17. public Integer sortOrder;
    18.  
    19. @Size(max = 1000)
    20. public String createdBy;
    21.  
    22. @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)
Back to top