Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for 01234567 (0.11 sec)

  1. src/encoding/gob/encoder_test.go

    func TestBasicEncoderDecoder(t *testing.T) {
    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    		complex128(1.2345678 + 2.3456789i),
    		[]byte("hello"),
    		string("hello"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      std::string path = GetURIForPath("a_file");
      auto gcs_file =
          static_cast<tf_gcs_filesystem::GCSFile*>(filesystem_->plugin_filesystem);
      ASSERT_TRUE(InsertObject(path, "012345678", &gcs_file->gcs_client, status_));
    
      TF_RandomAccessFile* file = new TF_RandomAccessFile;
      tf_gcs_filesystem::NewRandomAccessFile(filesystem_, path.c_str(), file,
                                             status_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  3. src/text/template/parse/lex.go

    	digits := "0123456789_"
    	if l.accept("0") {
    		// Note: Leading 0 does not mean octal in floats.
    		if l.accept("xX") {
    			digits = "0123456789abcdefABCDEF_"
    		} else if l.accept("oO") {
    			digits = "01234567_"
    		} else if l.accept("bB") {
    			digits = "01_"
    		}
    	}
    	l.acceptRun(digits)
    	if l.accept(".") {
    		l.acceptRun(digits)
    	}
    	if len(digits) == 10+1 && l.accept("eE") {
    		l.accept("+-")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. src/hash/maphash/smhasher_test.go

    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/strconv/atoi_test.go

    	{"-0_1_2_3_4_5", 0, -012345, nil}, // octal
    	{"0_1_2_3_4_5", 0, 012345, nil},   // octal
    	{"-_012345", 0, 0, ErrSyntax},
    	{"_-012345", 0, 0, ErrSyntax},
    	{"_012345", 0, 0, ErrSyntax},
    	{"0__12345", 0, 0, ErrSyntax},
    	{"01234__5", 0, 0, ErrSyntax},
    	{"012345_", 0, 0, ErrSyntax},
    
    	{"+0xf", 0, 0xf, nil},
    	{"-0xf", 0, -0xf, nil},
    	{"0x+f", 0, 0, ErrSyntax},
    	{"0x-f", 0, 0, ErrSyntax},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/registry/registry_test.go

    	}{
    		{registry.DWORD, "Dword1", nil},
    		{registry.DWORD, "Dword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword1", nil},
    		{registry.QWORD, "Qword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword3", []byte{1, 2, 3, 4, 5, 6, 7}},
    		{registry.MULTI_SZ, "MultiString1", nil},
    		{registry.MULTI_SZ, "MultiString2", []byte{0}},
    		{registry.MULTI_SZ, "MultiString3", []byte{'a', 'b', 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/time/example_test.go

    	// representation of the time stamp,
    	//	Jan 2 15:04:05 2006 MST
    	// An easy way to remember this value is that it holds, when presented
    	// in this order, the values (lined up with the elements above):
    	//	  1 2  3  4  5    6  -7
    	// There are some wrinkles illustrated below.
    
    	// Most uses of Format and Parse use constant layout strings such as
    	// the ones defined in this package, but the interface is flexible,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/abt/avlint32_test.go

    func TestSetOps(t *testing.T) {
    	A := tree([]int32{1, 2, 3, 4})
    	B := tree([]int32{3, 4, 5, 6, 7})
    
    	AIB := tree([]int32{3, 4})
    	ADB := tree([]int32{1, 2})
    	BDA := tree([]int32{5, 6, 7})
    	AUB := tree([]int32{1, 2, 3, 4, 5, 6, 7})
    	AXB := tree([]int32{1, 2, 5, 6, 7})
    
    	aib1 := A.Intersection(B, first)
    	assert(t, AIB, aib1, "aib1")
    	if A.Find(3) != aib1.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, A/aib1")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      // CHECK-DAG: %[[cst:.*]] = arith.constant dense<[7, 6, 5, 4, 3, 2]> : tensor<6xi32>
      // CHECK-DAG: %[[cst_0:.*]] = arith.constant dense<[5, 4, 3, 2, 1, 0]> : tensor<6xi32>
      // CHECK-DAG: %[[cst_1:.*]] = arith.constant dense<[1, 2, 3, 4, 5, 6, 7]> : tensor<7xi32>
      // CHECK: %0 = "tfl.reshape"(%arg0, %[[cst]]) : (tensor<7x6x5x4x3x2x1xf32>, tensor<6xi32>) -> tensor<7x6x5x4x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    // Scan is a support routine for fmt.Scanner. It accepts the formats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top