Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 456Z (0.03 sec)

  1. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        public void test_getAsStringWithNonStringValue() {
            dataStoreParams.put("intKey", 123);
            assertEquals("123", dataStoreParams.getAsString("intKey"));
    
            dataStoreParams.put("longKey", 456L);
            assertEquals("456", dataStoreParams.getAsString("longKey"));
    
            dataStoreParams.put("boolKey", true);
            assertEquals("true", dataStoreParams.getAsString("boolKey"));
        }
    
        // Test getAsString with null value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

            void testTreeIdPropagation() {
                TestServerMessageBlock2 nextMessage = new TestServerMessageBlock2(mockConfig);
                testMessage.chain(nextMessage);
                testMessage.setTreeId(456);
                assertEquals(456, nextMessage.getTreeId());
            }
    
            @Test
            @DisplayName("Should get and set session ID")
            void testSessionIdProperty() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

        }
    
        public void test_replaceHighlightQueries() {
            String text;
            String[] queries;
    
            text = "<a>123<b>456<c>";
            queries = new String[] { "123", "456" };
            assertEquals("<a><strong>123</strong><b><strong>456</strong><c>", viewHelper.replaceHighlightQueries(text, queries));
    
            text = "<123><456>";
            queries = new String[] { "123", "456" };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

            System.setProperty(Constants.FESS_CONFIG_PREFIX + floatKey, "45.67");
    
            try {
                String intValue = fessConfig.get(intKey);
                assertEquals("123", intValue);
    
                String floatValue = fessConfig.get(floatKey);
                assertEquals("45.67", floatValue);
            } finally {
                System.clearProperty(Constants.FESS_CONFIG_PREFIX + intKey);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

            auth.setUser("alice");
            auth.setRealm("EXAMPLE.COM");
            auth.setService("cifs");
            auth.setUserLifeTime(123);
            auth.setLifeTime(456);
            auth.setForceFallback(true);
    
            Kerb5Authenticator cloned = auth.clone();
    
            assertNotSame(auth, cloned);
            assertEquals(subj, cloned.getSubject());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            Map<String, Object> doc = new HashMap<>();
            List<Object> mixedList = Arrays.asList("string", 123, true, null, 45.67);
            doc.put("key", mixedList);
    
            String[] result = DocumentUtil.getValue(doc, "key", String[].class);
            assertArrayEquals(new String[] { "string", "123", "true", "45.67" }, result);
        }
    
        public void test_string_array_to_list_conversion() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        assertFalse(set.equals(Sets.newTreeSet(asList(4, 5, 6))));
        assertNotEqualLenient(Sets.newTreeSet(asList(4, 5, 6)), set);
      }
    
      public void testEquals_bothExplicitOrdering_stringVsInt() {
        SortedSet<String> set = of("in", "the", "a");
        assertFalse(set.equals(Sets.newTreeSet(asList(4, 5, 6))));
        assertNotEqualLenient(Sets.newTreeSet(asList(4, 5, 6)), set);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                // Then: Should have correct values
                assertEquals(0x3e, message.getOpnum());
                assertEquals("system", message.system_name);
                assertEquals(456, message.unknown);
                assertEquals(123, message.access_mask);
                assertEquals(mockPolicyHandle, message.handle);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/WholeOperationTimeoutTest.kt

            .build()
        val timeoutClient =
          client
            .newBuilder()
            .callTimeout(Duration.ofMillis(456))
            .build()
        val call = timeoutClient.newCall(request)
        assertThat(call.timeout().timeoutNanos())
          .isEqualTo(TimeUnit.MILLISECONDS.toNanos(456))
      }
    
      @Test
      fun timeoutWritingRequest() {
        server.enqueue(MockResponse())
        val request =
          Request
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbTreeTest.java

                    SmbComTreeConnectAndXResponse treeResponse = (SmbComTreeConnectAndXResponse) response;
                    treeResponse.tid = 456;
                    treeResponse.service = "testService";
                    treeResponse.shareIsInDfs = true;
                }
                return null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top