Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for B1000000 (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    	B1152000                         = 0x1009
    	B1500000                         = 0x100a
    	B2000000                         = 0x100b
    	B230400                          = 0x1003
    	B2500000                         = 0x100c
    	B3000000                         = 0x100d
    	B3500000                         = 0x100e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    	B1152000                         = 0x1009
    	B1500000                         = 0x100a
    	B2000000                         = 0x100b
    	B230400                          = 0x1003
    	B2500000                         = 0x100c
    	B3000000                         = 0x100d
    	B3500000                         = 0x100e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    	B1152000                         = 0x1009
    	B1500000                         = 0x100a
    	B2000000                         = 0x100b
    	B230400                          = 0x1003
    	B2500000                         = 0x100c
    	B3000000                         = 0x100d
    	B3500000                         = 0x100e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

                std::vector<int64_t>{0, -1, 0, 0, 0, 0, 0, 0},
                "device coordinate (0, -1, 0, 0) in 'device_assignment' "
                "is outside of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
                2, 1, TopologyWithDeviceCoordinates({0, 0, 0, 0, 1, 0, 0, 0}),
                std::vector<int64_t>{0, 1, 0, 0, 0, 0, 0, 0},
                "device coordinate (0, 1, 0, 0) in 'device_assignment' is "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. cmd/data-usage_test.go

    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    	}
    	createUsageTestFiles(t, base, bucket, files)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("0 GB", format.format(_999_kilobytes, ScaleUnit.GIGABYTE));
    
            long _1000_kilobytes = 1000L * 1000L;
            assertEquals("1.0 MB", format.format(_1000_kilobytes));
            assertEquals("1000000 B", format.format(_1000_kilobytes, ScaleUnit.BYTE));
            assertEquals("1000 kB", format.format(_1000_kilobytes, ScaleUnit.KILOBYTE));
            assertEquals("1.0 MB", format.format(_1000_kilobytes, ScaleUnit.MEGABYTE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        assertThat(bf.approximateElementCount()).isAtMost((long) (sizeGuess * 1.01));
      }
    
      public void testCreateAndCheckMitz32BloomFilterWithKnownFalsePositives() {
        int numInsertions = 1000000;
        BloomFilter<String> bf =
            BloomFilter.create(
                Funnels.unencodedCharsFunnel(),
                numInsertions,
                0.03,
                BloomFilterStrategies.MURMUR128_MITZ_32);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	// traceback from goexit1 must hit code range of goexit
    	MOVW	R0, R0	// NOP
    
    // x -> x/1000000, x%1000000, called from Go with args, results on stack.
    TEXT runtime·usplit(SB),NOSPLIT,$0-12
    	MOVW	x+0(FP), R0
    	CALL	runtime·usplitR0(SB)
    	MOVW	R0, q+4(FP)
    	MOVW	R1, r+8(FP)
    	RET
    
    // R0, R1 = R0/1000000, R0%1000000
    TEXT runtime·usplitR0(SB),NOSPLIT,$0
    	// magic multiply to avoid software divide without available m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/net/ip_test.go

    		[]byte("192.0.2.1"),
    		nil,
    	},
    	{
    		IP{0, 0, 0, 0},
    		"0.0.0.0",
    		[]byte("0.0.0.0"),
    		nil,
    	},
    
    	// IPv4-mapped IPv6 address
    	{
    		IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 192, 0, 2, 1},
    		"192.0.2.1",
    		[]byte("192.0.2.1"),
    		nil,
    	},
    	{
    		IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, 0, 0, 0, 0},
    		"0.0.0.0",
    		[]byte("0.0.0.0"),
    		nil,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    		},
    		{
    			example: hex("1864"),
    			decoded: int64(100),
    		},
    		{
    			example: hex("1903e8"),
    			decoded: int64(1000),
    		},
    		{
    			example: hex("1a000f4240"),
    			decoded: int64(1000000),
    		},
    		{
    			example: hex("1b000000e8d4a51000"),
    			decoded: int64(1000000000000),
    		},
    		{
    			example: hex("1bffffffffffffffff"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top