Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for 4096000 (0.04 seconds)

  1. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                response.decode(buffer2, 0, buffer2.length);
                assertEquals(5, response.getChunksWritten());
                assertEquals(8192, response.getChunkBytesWritten());
                assertEquals(40960, response.getTotalBytesWritten());
            }
    
            @Test
            @DisplayName("Should work with real-world values")
            void testRealWorldValues() throws SMBProtocolDecodingException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.8K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("0 MB", format.format(1000L, ScaleUnit.MEGABYTE));
            assertEquals("0 GB", format.format(1000L, ScaleUnit.GIGABYTE));
    
            assertEquals("49 kB", format.format(49L * 1000L));
            assertEquals("49000 B", format.format(49L * 1000L, ScaleUnit.BYTE));
            assertEquals("49 kB", format.format(49L * 1000L, ScaleUnit.KILOBYTE));
            assertEquals("0 MB", format.format(49L * 1000L, ScaleUnit.MEGABYTE));
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/transfer/FileSizeFormatTest.java

                    Arguments.of(1000L, ScaleUnit.GIGABYTE, "0 GB"),
    
                    // 49 kilobytes
                    Arguments.of(49L * 1000L, null, "49 kB"),
                    Arguments.of(49L * 1000L, ScaleUnit.BYTE, "49000 B"),
                    Arguments.of(49L * 1000L, ScaleUnit.KILOBYTE, "49 kB"),
                    Arguments.of(49L * 1000L, ScaleUnit.MEGABYTE, "0 MB"),
                    Arguments.of(49L * 1000L, ScaleUnit.GIGABYTE, "0 GB"),
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 14.9K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            .withValueStrengths(ImmutableSet.copyOf(Strength.values()))
            .withConcurrencyLevels(ImmutableSet.of(1, 4, 16, 64))
            .withMaximumSizes(ImmutableSet.of(400, 1000))
            .withInitialCapacities(ImmutableSet.of(0, 1, 10, 100, 1000))
            .withExpireAfterWrites(
                ImmutableSet.of(
                    // DurationSpec.of(500, MILLISECONDS),
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15.4K bytes
    - Click Count (0)
  5. src/archive/zip/struct.go

    const (
    	// Unix constants. The specification doesn't mention them,
    	// but these seem to be the values agreed on by tools.
    	s_IFMT   = 0xf000
    	s_IFSOCK = 0xc000
    	s_IFLNK  = 0xa000
    	s_IFREG  = 0x8000
    	s_IFBLK  = 0x6000
    	s_IFDIR  = 0x4000
    	s_IFCHR  = 0x2000
    	s_IFIFO  = 0x1000
    	s_ISUID  = 0x800
    	s_ISGID  = 0x400
    	s_ISVTX  = 0x200
    
    	msdosDir      = 0x10
    	msdosReadOnly = 0x01
    )
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 28 21:41:09 GMT 2024
    - 12.1K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/net/InetAddressesTest.java

        }
    
        String validTeredoAddress = "2001:0000:4136:e378:8000:63bf:3fff:fdd2";
        String serverStr = "65.54.227.120";
        String clientStr = "192.0.2.45";
        int port = 40000;
        int flags = 0x8000;
    
        InetAddress ip = InetAddresses.forString(validTeredoAddress);
        assertTrue(InetAddresses.isTeredoAddress((Inet6Address) ip));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top