Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 171 for combinations (0.07 sec)

  1. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            System.setProperty("java.version", "1.8.0_301");
            assertEquals(8, JvmUtil.getJavaVersion());
        }
    
        public void test_getJavaVersion_variousFormats() {
            // Test different separator combinations
            System.setProperty("java.version", "11.0.15.1");
            assertEquals(11, JvmUtil.getJavaVersion());
    
            System.setProperty("java.version", "17_0_2");
            assertEquals(17, JvmUtil.getJavaVersion());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

        }
    
        @ParameterizedTest
        @MethodSource("provideNamesForWriteTest")
        @DisplayName("writeTrailerWireFormat should handle various name combinations")
        void testWriteTrailerWireFormatVariousNames(String calledName, int calledType, String callingName, int callingType) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java

                assertEquals(4096, response.getCount());
                assertEquals(2048, response.getRemaining());
            }
    
            @ParameterizedTest
            @DisplayName("Should read count and remaining combinations")
            @CsvSource({ "0, 0", "512, 512", "1024, 0", "0, 1024", "4096, 8192", "65536, 131072", "1048576, 2097152" })
            void testReadCountAndRemainingCombinations(int count, int remaining) throws SMBProtocolDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

            // When
            int bytesRead = request.readBytesWireFormat(buffer, offset);
    
            // Then
            assertEquals(0, bytesRead);
        }
    
        @DisplayName("Should handle different completion filter combinations")
        @ParameterizedTest
        @CsvSource({ "1, FILE_NOTIFY_CHANGE_FILE_NAME", "2, FILE_NOTIFY_CHANGE_DIR_NAME", "4, FILE_NOTIFY_CHANGE_ATTRIBUTES",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java

            assertEquals(maxAttributes, decoded.getAttributes());
        }
    
        @Test
        @DisplayName("Test with various file attributes")
        void testVariousFileAttributes() {
            // Test common file attribute combinations
            int[] attributes = { 0x00000001, // FILE_ATTRIBUTE_READONLY
                    0x00000002, // FILE_ATTRIBUTE_HIDDEN
                    0x00000004, // FILE_ATTRIBUTE_SYSTEM
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

                "32768, 16384, 'test*.txt', 500, 32768" })
        void testConstructorWithVariousParameters(int sid, int resumeKey, String filename, int batchCount, int batchSize) {
            // Test constructor with various parameter combinations
            trans2FindNext2 = new Trans2FindNext2(config, sid, resumeKey, filename, batchCount, batchSize);
    
            assertNotNull(trans2FindNext2);
    
            // Verify parameters are written correctly
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     *
     * <p>{@link org.apache.maven.api.DependencyScope} defines when/how a given dependency will be used by the
     * project. This includes compile-time only, runtime, test time, and various other combinations.</p>
     *
     * <h3>Resolution</h3>
     *
     * <p><dfn>Version resolution</dfn> is the process of finding, for a given artifact, a list of
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

            // When
            response.prepare(mockNext);
    
            // Then
            verify(mockNext, times(0)).setTreeId(any(Integer.class));
        }
    
        @DisplayName("Should handle various share flag combinations")
        @ParameterizedTest
        @MethodSource("provideFlagCombinations")
        void testShareFlagCombinations(int flags, boolean expectedDfs) throws SMBProtocolDecodingException {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/SidResolverTest.java

            SID[] result = sidResolver.getGroupMemberSids(mockContext, testServerName, mockDomainSid, 0, 0);
    
            assertNotNull(result);
            assertEquals(1, result.length);
        }
    
        // Test different flag combinations
        @Test
        void testGetGroupMemberSids_DifferentFlags() throws CIFSException {
            int[] testFlags = { 0, 1, 2, 4, 8, 16, 32, Integer.MAX_VALUE };
    
            for (int flag : testFlags) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                assertEquals(12, bytesDecoded);
                assertEquals(totalBytes, response.getTotalBytesWritten());
            }
    
            @ParameterizedTest
            @DisplayName("Should decode combinations of values")
            @CsvSource({ "0, 0, 0", "1, 65536, 65536", "2, 65536, 131072", "5, 131072, 655360", "10, 1048576, 10485760", "100, 65536, 6553600",
                    "1000, 4096, 4096000" })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
Back to top