Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 1104 (0.09 sec)

  1. src/math/big/int_test.go

    	{"-1", 200, 1},
    	{"0x2000000000000000000000000000", 108, 0},
    	{"0x2000000000000000000000000000", 109, 1},
    	{"0x2000000000000000000000000000", 110, 0},
    	{"-0x2000000000000000000000000001", 108, 1},
    	{"-0x2000000000000000000000000001", 109, 0},
    	{"-0x2000000000000000000000000001", 110, 1},
    }
    
    func TestBitSet(t *testing.T) {
    	for _, test := range bitwiseTests {
    		x := new(Int)
    		x.SetString(test.x, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}{
    		{decQuantity(10, 0, DecimalSI), decQuantity(1, 1, DecimalSI), decQuantity(20, 0, DecimalSI)},
    		{decQuantity(10, 0, DecimalSI), decQuantity(1, 0, BinarySI), decQuantity(11, 0, DecimalSI)},
    		{decQuantity(10, 0, BinarySI), decQuantity(1, 0, DecimalSI), decQuantity(11, 0, BinarySI)},
    		{Quantity{Format: DecimalSI}, decQuantity(50, 0, DecimalSI), decQuantity(50, 0, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                self._output_saved_model_path, self._input_saved_model_path
            ),
            1 / 3,
        )
    
      def test_when_preset_not_srq_raises_error(self):
        self._create_matmul_model(
            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
    
        config = qc.QuantizationConfig()
        with self.assertRaisesRegex(ValueError, 'only supports static-range PTQ'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="joda-time" name="joda-time" version="2.10.4">
             <artifact name="joda-time-2.10.4.jar">
                <pgp value="B41089A2DA79B0FA5810252872385FF0AF338D52"/>
             </artifact>
          </component>
          <component group="joda-time" name="joda-time" version="2.10.5">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. src/time/time_test.go

    			}
    		}
    	}
    }
    
    var durationTests = []struct {
    	str string
    	d   Duration
    }{
    	{"0s", 0},
    	{"1ns", 1 * Nanosecond},
    	{"1.1µs", 1100 * Nanosecond},
    	{"2.2ms", 2200 * Microsecond},
    	{"3.3s", 3300 * Millisecond},
    	{"4m5s", 4*Minute + 5*Second},
    	{"4m5.001s", 4*Minute + 5001*Millisecond},
    	{"5h6m7.001s", 5*Hour + 6*Minute + 7001*Millisecond},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	// Booleans
    	{"not", "{{not true}} {{not false}}", "false true", nil, true},
    	{"and", "{{and false 0}} {{and 1 0}} {{and 0 true}} {{and 1 1}}", "false 0 0 1", nil, true},
    	{"or", "{{or 0 0}} {{or 1 0}} {{or 0 true}} {{or 1 1}}", "0 1 true 1", nil, true},
    	{"or short-circuit", "{{or 0 1 (die)}}", "1", nil, true},
    	{"and short-circuit", "{{and 1 0 (die)}}", "0", nil, true},
    	{"or short-circuit2", "{{or 0 0 (die)}}", "", nil, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    	pod1 := makePod(map[string]string{"foo": "true", "bar": "true"}, "1001")
    	pod2 := makePod(map[string]string{"foo": "true"}, "1002")
    	pod3 := makePod(map[string]string{}, "1003")
    	pod4 := makePod(map[string]string{}, "1004")
    	pod1DeletedAt2 := pod1.DeepCopyObject().(*examplev1.Pod)
    	pod1DeletedAt2.ResourceVersion = "1002"
    	pod2DeletedAt3 := pod2.DeepCopyObject().(*examplev1.Pod)
    	pod2DeletedAt3.ResourceVersion = "1003"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    	i := strings.LastIndexByte(text, ':') // look from right (Windows filenames may contain ':')
    	if i < 0 {
    		return 0, 0, false // no ':'
    	}
    	// i >= 0
    	n, err := strconv.ParseUint(text[i+1:], 10, 0)
    	return uint(i + 1), uint(n), err == nil
    }
    
    func (p *parser) got(tok token) bool {
    	if p.tok == tok {
    		p.next()
    		return true
    	}
    	return false
    }
    
    func (p *parser) want(tok token) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// windows/64-bit         48         4MB          64    1M  (8MB)
    	//      ios/arm64         33         4MB           1  2048  (8KB)
    	//       */32-bit         32         4MB           1  1024  (4KB)
    	//     */mips(le)         31         4MB           1   512  (2KB)
    
    	// heapArenaBytes is the size of a heap arena. The heap
    	// consists of mappings of size heapArenaBytes, aligned to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/os/os_test.go

    		// Test the slurp case
    		openDir()
    		fn(0, 105, nil)
    		fn(0, 0, nil)
    		d.Close()
    
    		// Slurp with -1 instead
    		openDir()
    		fn(-1, 105, nil)
    		fn(-2, 0, nil)
    		fn(0, 0, nil)
    		d.Close()
    
    		// Test the bounded case
    		openDir()
    		fn(1, 1, nil)
    		fn(2, 2, nil)
    		fn(105, 102, nil) // and tests buffer >100 case
    		fn(3, 0, io.EOF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top