Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 01234__5 (0.49 sec)

  1. src/strconv/atoi_test.go

    	{"01234__5", 0, 0, ErrSyntax},
    	{"012345_", 0, 0, ErrSyntax},
    
    	{"0o_1_2_3_4_5", 0, 012345, nil}, // base 0 => 8 (0o377)
    	{"_0o12345", 0, 0, ErrSyntax},
    	{"0o__12345", 0, 0, ErrSyntax},
    	{"0o1234__5", 0, 0, ErrSyntax},
    	{"0o12345_", 0, 0, ErrSyntax},
    
    	{"0_1_2_3_4_5", 8, 0, ErrSyntax}, // base 8
    	{"_012345", 8, 0, ErrSyntax},
    	{"0__12345", 8, 0, ErrSyntax},
    	{"01234__5", 8, 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)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

        MOCK_METHOD(void, ApplyRemat, (const RematSpec&));
      };
    };
    
    TEST_F(GreedyRematTest, MlpBasic) {
      StrictMock<MlpRemat> remat(std::vector<int>({1, 1, 1}));
      // (o)ut, (i)n, (l)ive: 0 1 2 3 4 5 Sum
      // %0 = f0()            o           1
      // %1 = f1(%0)          i o         2
      // %2 = f2(%1)          l i o       3
      // %3 = g2(   %2)       l l i o     4
      // %4 = g1(%3,%1)       l i   i o   4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

          <verify-metadata>true</verify-metadata>
          <ignored-keys>
             <ignored-key id="ABcdEF"/>
             <ignored-key id="012345" reason="nope"/>
          </ignored-keys>
       </configuration>
    </verification-metadata>
    """
            then:
            verifier.configuration.ignoredKeys == [key("ABCDEF"), key("012345", "nope")] as Set
        }
    
        def "can parse #expectedResult keyring format"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            builder.addIgnoredKey(new IgnoredKey("012345", "test"))
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>false</verify-signatures>
          <ignored-keys>
             <ignored-key id="012345" reason="test"/>
             <ignored-key id="ABCDEF"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/server/server_test.go

    			contentType:    "application/yaml",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusUnsupportedMediaType,
    		},
    		{
    			name:           "bad content",
    			body:           []byte{0, 1, 2, 3, 4, 5}, // random data
    			contentType:    "application/json",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusOK,
    		},
    		{
    			name:           "no content",
    			body:           []byte{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        ByteSource b1 = ByteSource.wrap(new byte[] {0, 1, 2, 3});
        ByteSource b2 = ByteSource.wrap(new byte[0]);
        ByteSource b3 = ByteSource.wrap(new byte[] {4, 5});
    
        byte[] expected = {0, 1, 2, 3, 4, 5};
    
        assertArrayEquals(expected, ByteSource.concat(ImmutableList.of(b1, b2, b3)).read());
        assertArrayEquals(expected, ByteSource.concat(b1, b2, b3).read());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    func.func @fused_batch_norm_v3_f16(%arg0 : tensor<?x112x112x16xf16>, %arg1 : tensor<16xf32>, %arg2 : tensor<16xf32>, %arg3 : tensor<16xf32>, %arg4 : tensor<16xf32>) -> tensor<?x112x112x16xf16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. src/go/token/position_test.go

    }
    
    var tests = []struct {
    	filename string
    	source   []byte // may be nil
    	size     int
    	lines    []int
    }{
    	{"a", []byte{}, 0, []int{}},
    	{"b", []byte("01234"), 5, []int{0}},
    	{"c", []byte("\n\n\n\n\n\n\n\n\n"), 9, []int{0, 1, 2, 3, 4, 5, 6, 7, 8}},
    	{"d", nil, 100, []int{0, 5, 10, 20, 30, 70, 71, 72, 80, 85, 90, 99}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    	m[0] = 12345
    	m[0] += 67890
    	m[0] /= 123
    	m[0] %= 456
    
    	const want = (12345 + 67890) / 123 % 456
    	if got := m[0]; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    }
    
    var sinkAppend bool
    
    func TestMapAppendAssignment(t *testing.T) {
    	m := make(map[int][]int, 0)
    
    	m[0] = nil
    	m[0] = append(m[0], 12345)
    	m[0] = append(m[0], 67890)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/image/jpeg/scan.go

    					// progressive image consists of two 16x16 MCUs. The interleaved scans
    					// will process 8 Y blocks:
    					//	0 1 4 5
    					//	2 3 6 7
    					// The non-interleaved scans will process only 6 Y blocks:
    					//	0 1 2
    					//	3 4 5
    					if nComp != 1 {
    						bx = hi*mx + j%hi
    						by = vi*my + j/hi
    					} else {
    						q := mxx * hi
    						bx = blockCount % q
    						by = blockCount / q
    						blockCount++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top