Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 01234567 (0.39 sec)

  1. src/strings/strings_test.go

    	// 8-byte needle
    	{"xxxxxxxxxxxx", "01234567", false},
    	{"01234567xxxx", "01234567", true},
    	{"xx01234567xx", "01234567", true},
    	{"xxxx01234567", "01234567", true},
    	{"01234567xxxxx"[1:], "01234567", false},
    	{"xxxxx01234567"[:12], "01234567", false},
    	// 9-15-byte needle
    	{"xxxxxxxxxxxxx", "012345678", false},
    	{"012345678xxxx", "012345678", true},
    	{"xx012345678xx", "012345678", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            if ( log.isTraceEnabled() ) {
                log.trace("New data read: " + this);
                log.trace(Hexdump.toHexString(this.sbuf, 4, 32));
            }
    
            for ( ;; ) {
                /*
                 * 01234567
                 * 00SSFSMB
                 * 0 - 0's
                 * S - size of payload
                 * FSMB - 0xFF SMB magic #
                 */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $erf_out),
       (HasOneUse $mul_out1),
      ]>;
    
    // Fetches the output of FC op, from the provided arguments.
    def GetFcOutput : NativeCodeCall<
      "GetFcOutput(&$_builder, $0, $1, $2, $3, $4, $5, $6, $7)">;
    
    // Verifies all values in the provided argument are zero.
    def AllValuesAreZero :  Constraint<CPred<"AllValuesAreZero($0)">>;
    
    def SimplifyDoubleSelectFCZerosLHS : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	{"%☠", [1]byte{0}, "[%!☠(uint8=0)]"},
    	{"%☠", [1]uint8{0}, "[%!☠(uint8=0)]"},
    	{"%☠", "hello", "%!☠(string=hello)"},
    	{"%☠", 1.2345678, "%!☠(float64=1.2345678)"},
    	{"%☠", float32(1.2345678), "%!☠(float32=1.2345678)"},
    	{"%☠", 1.2345678 + 1.2345678i, "%!☠(complex128=(1.2345678+1.2345678i))"},
    	{"%☠", complex64(1.2345678 + 1.2345678i), "%!☠(complex64=(1.2345678+1.2345678i))"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    			Erasure: ErasureInfo{
    				Algorithm:    erasureAlgorithm,
    				DataBlocks:   4,
    				ParityBlocks: 4,
    				BlockSize:    blockSizeV2,
    				Index:        1,
    				Distribution: []int{0, 1, 2, 3, 4, 5, 6, 7},
    				Checksums:    nil,
    			},
    		}
    		if err := xl.WriteMetadata(ctx, "", volume, object, fi); err != nil {
    			t.Fatalf("Unable to create object, %s", err)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVD $-32768, R6                // 38c08000
    	MOVD $1234567, R5               // 6405001260a5d687 or 0600001238a0d687
    	MOVW $1, R3                     // 38600001
    	MOVW $-1, R4                    // 3880ffff
    	MOVW $65535, R5                 // 6005ffff
    	MOVW $65536, R6                 // 3cc00001
    	MOVW $-32767, R5                // 38a08001
    	MOVW $-32768, R6                // 38c08000
    	MOVW $1234567, R5               // 6405001260a5d687 or 0600001238a0d687
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/time/time_test.go

    }
    
    var gobTests = []Time{
    	Date(0, 1, 2, 3, 4, 5, 6, UTC),
    	Date(7, 8, 9, 10, 11, 12, 13, FixedZone("", 0)),
    	Unix(81985467080890095, 0x76543210), // Time.sec: 0x0123456789ABCDEF
    	{},                                  // nil location
    	Date(1, 2, 3, 4, 5, 6, 7, FixedZone("", 32767*60)),
    	Date(1, 2, 3, 4, 5, 6, 7, FixedZone("", -32768*60)),
    }
    
    func TestTimeGob(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    	LINUX_REBOOT_CMD_CAD_ON          = 0x89abcdef
    	LINUX_REBOOT_CMD_HALT            = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC           = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF       = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART         = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2        = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND      = 0xd000fce2
    	LINUX_REBOOT_MAGIC1              = 0xfee1dead
    	LINUX_REBOOT_MAGIC2              = 0x28121969
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_amd64.go

    	LINUX_REBOOT_CMD_CAD_ON          = 0x89abcdef
    	LINUX_REBOOT_CMD_HALT            = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC           = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF       = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART         = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2        = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND      = 0xd000fce2
    	LINUX_REBOOT_MAGIC1              = 0xfee1dead
    	LINUX_REBOOT_MAGIC2              = 0x28121969
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_arm.go

    	LINUX_REBOOT_CMD_CAD_ON          = 0x89abcdef
    	LINUX_REBOOT_CMD_HALT            = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC           = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF       = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART         = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2        = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND      = 0xd000fce2
    	LINUX_REBOOT_MAGIC1              = 0xfee1dead
    	LINUX_REBOOT_MAGIC2              = 0x28121969
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
Back to top