Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 456Z (0.02 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/dict/DictionaryItemTest.java

            dictionaryItem.id = 123L;
            assertEquals(123L, dictionaryItem.getId());
        }
    
        public void test_getId_negativeValue() {
            // Test with negative ID value
            dictionaryItem.id = -456L;
            assertEquals(-456L, dictionaryItem.getId());
        }
    
        public void test_getId_maxValue() {
            // Test with maximum Long value
            dictionaryItem.id = Long.MAX_VALUE;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ConfigTest.java

        @DisplayName("Should get integer property with default value")
        void testGetIntWithDefault() {
            assertEquals(123, Config.getInt(testProperties, "test.int", 0));
            assertEquals(456, Config.getInt(testProperties, "nonexistent.int", 456));
            assertEquals(789, Config.getInt(testProperties, "test.invalid.int", 789));
        }
    
        @Test
        @DisplayName("Should get integer property")
        void testGetInt() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/SmbComOpenAndXResponseTest.java

        }
    
        @Test
        void testSetAction() {
            response.action = 2;
            assertEquals(2, response.action);
        }
    
        @Test
        void testSetServerFid() {
            response.serverFid = 456;
            assertEquals(456, response.serverFid);
        }
    
        @Test
        void testToString() {
            // Set up the response object with test values
            response.fid = 1;
            response.fileAttributes = 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. src/test/java/jcifs/internal/SmbBasicFileInfoTest.java

        private static Stream<Arguments> valueProvider() {
            return Stream.of(Arguments.of(0, 0L, 0L, 0L, 0L), // all zeros
                    Arguments.of(1, 1L, 1L, 1L, 1L), // ones
                    Arguments.of(123, 456L, 789L, 101112L, 131415L), // arbitrary positives
                    Arguments.of(Integer.MAX_VALUE, Long.MAX_VALUE, Long.MIN_VALUE, 999_999_999_999L, -1L), // extremes
                    Arguments.of(-1, -2L, -3L, -4L, -5L) // negative values
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K 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