Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 712 for 0010 (0.04 sec)

  1. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertThrows(IllegalArgumentException.class, () -> source.slice(-1, 10));
    
        assertThrows(IllegalArgumentException.class, () -> source.slice(0, -1));
    
        assertCorrectSlice(0, 0, 0, 0);
        assertCorrectSlice(0, 0, 1, 0);
        assertCorrectSlice(100, 0, 10, 10);
        assertCorrectSlice(100, 0, 100, 100);
        assertCorrectSlice(100, 5, 10, 10);
        assertCorrectSlice(100, 5, 100, 95);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/math/big/natconv_test.go

    	// valid, with decimal point
    	{"0.", 0, false, nil, 10, 1, nil, '.'},
    	{"0.", 10, true, nil, 10, 0, nil, 0},
    	{"0.1.2", 10, true, nat{1}, 10, -1, nil, '.'},
    	{".000", 10, true, nil, 10, -3, nil, 0},
    	{"12.3", 10, true, nat{123}, 10, -1, nil, 0},
    	{"012.345", 10, true, nat{12345}, 10, -3, nil, 0},
    	{"0.1", 0, true, nat{1}, 10, -1, nil, 0},
    	{"0.1", 2, true, nat{1}, 2, -1, nil, 0},
    	{"0.12", 2, true, nat{1}, 2, -1, nil, '2'},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    	// therefore the bits will be in the reverse order. So normally one
    	// would expect, say, 4*key to be in index 4 of the table but due to
    	// this bit ordering it will actually be in index 0010 (base 2) = 2.
    	x := gcmFieldElement{
    		byteorder.BeUint64(key[:8]),
    		byteorder.BeUint64(key[8:]),
    	}
    	g.productTable[reverseBits(1)] = x
    
    	for i := 2; i < 16; i += 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    			orMask: "11",
    		},
    		{
    			name:   "Mask 01 OR mask 10 OR mask 11",
    			masks:  [][]int{{0}, {1}, {0, 1}},
    			orMask: "11",
    		},
    		{
    			name:   "Mask 1000 OR mask 0100 OR mask 0010 OR mask 0001",
    			masks:  [][]int{{3}, {2}, {1}, {0}},
    			orMask: "1111",
    		},
    	}
    	for _, tc := range tcases {
    		var bitMasks []BitMask
    		for i := range tc.masks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

      %4 = "quantfork.stats"(%3) {
        layerStats = dense<[0.0, 4.0]> : tensor<2xf32>
      } : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
      %5 = "tfl.sqrt"(%4) : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
      %6 = "quantfork.stats"(%5) {
        layerStats = dense<[0.0, 2.0]> : tensor<2xf32>
      } : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/math/big/ratconv_test.go

    }{
    	// valid, without separators
    	{"", false, false, 0, 10, nil, 0},
    	{"1", false, false, 0, 10, nil, '1'},
    	{"e0", false, false, 0, 10, nil, 0},
    	{"E1", false, false, 1, 10, nil, 0},
    	{"e+10", false, false, 10, 10, nil, 0},
    	{"e-10", false, false, -10, 10, nil, 0},
    	{"e123456789a", false, false, 123456789, 10, nil, 'a'},
    	{"p", false, false, 0, 10, nil, 'p'},
    	{"P+100", false, false, 0, 10, nil, 'P'},
    	{"p0", true, false, 0, 2, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    								Type: "string",
    							},
    						},
    					},
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "size(self[0][0]) == 10",
    							Message: "size of items under items of scoped field should be equal to 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/fp_test.go

    }
    
    func floatingToIntegerConversionsTest(t *testing.T) {
    	floatsToInts(t, 0.0, 0)
    	floatsToInts(t, 0.5, 0)
    	floatsToInts(t, 0.9, 0)
    	floatsToInts(t, 1.0, 1)
    	floatsToInts(t, 1.5, 1)
    	floatsToInts(t, 127.0, 127)
    	floatsToInts(t, -1.0, -1)
    	floatsToInts(t, -128.0, -128)
    
    	floatsToUints(t, 0.0, 0)
    	floatsToUints(t, 1.0, 1)
    	floatsToUints(t, 255.0, 255)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        %1:2 = "tf.IteratorGetNext"(%arg4) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<*x!tf_type.resource>) -> (tensor<2x224x224x3xf32>, tensor<2x1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    		{bucketNames[0], "", "", 0, 0, ListPartsInfo{}, ObjectNameInvalid{Bucket: bucketNames[0]}, false},
    		// Asserting for Invalid UploadID (Test number 9).
    		{bucketNames[0], objectNames[0], "abc", 0, 0, ListPartsInfo{}, InvalidUploadID{UploadID: "abc"}, false},
    		// Test case for uploadID with multiple parts (Test number 12).
    		{bucketNames[0], objectNames[0], uploadIDs[0], 0, 10, partInfos[0], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top