Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 1104 (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    						&request{workEstimate: qs0.completeWorkEstimate(&fcrequest.WorkEstimate{InitialSeats: 1})},
    					),
    					requestsExecuting: sets.New[*request](),
    				},
    				{
    					nextDispatchR: fcrequest.SeatsTimesDuration(1, 100*time.Second),
    					requestsWaiting: newFIFO(
    						&request{workEstimate: qs0.completeWorkEstimate(&fcrequest.WorkEstimate{InitialSeats: 1})},
    					),
    				},
    			},
    			attempts:              1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cmd/xl-storage_test.go

    	{file: "myobject", offset: 1, length: 120, algorithm: SHA256, expError: errFileCorrupt},     // 4
    	{file: "myobject", offset: 3, length: 1100, algorithm: SHA256, expError: nil},               // 5
    	{file: "myobject", offset: 2, length: 100, algorithm: SHA256, expError: errFileCorrupt},     // 6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    		{bucketNames[1], "", "", "", "", 100, listMultipartResults[15], nil, true},
    		// Test case with multiple uploadID listing for given object, but uploadID marker set.
    		// Testing whether the marker entry is skipped (Test number 29-30).
    		{bucketNames[1], "", "minio-object-1.txt", uploadIDs[1], "", 100, listMultipartResults[16], 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)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.mapOfList['l'][0] == 'e'":                               5,
    				"self.listMapOfObj.exists(e, e.k2 == '2' && e.v2 == 'f')":     103,
    				"self.listOfMap[0]['z'] == 'g'":                               5,
    				"self.listOfObj[0].field3 == 'h'":                             5,
    				"self.listOfListMap[0].exists(e, e.k3 == '3' && e.v3 == 'i')": 104,
    
    				// chained comprehensions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/eviction/helpers.go

    			return nil, err
    		}
    		if percentage < 0 {
    			return nil, fmt.Errorf("eviction percentage threshold %v must be >= 0%%: %s", signal, val)
    		}
    		// percentage is a float and should not be greater than 1 (100%)
    		if percentage > 1 {
    			return nil, fmt.Errorf("eviction percentage threshold %v must be <= 100%%: %s", signal, val)
    		}
    		return &evictionapi.Threshold{
    			Signal:   signal,
    			Operator: operator,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/strings/strings_test.go

    func BenchmarkCountHard3(b *testing.B) { benchmarkCountHard(b, "<b>hello world</b>") }
    
    var benchInputTorture = Repeat("ABC", 1<<10) + "123" + Repeat("ABC", 1<<10)
    var benchNeedleTorture = Repeat("ABC", 1<<10+1)
    
    func BenchmarkIndexTorture(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Index(benchInputTorture, benchNeedleTorture)
    	}
    }
    
    func BenchmarkCountTorture(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %14 = "quantfork.stats"(%13) {layerStats = dense<[-0.488159984, 0.398609281]> : tensor<2xf32>} : (tensor<1x3xf32>) -> tensor<1x3xf32>
      func.return %10, %14 : tensor<1x4xf32>, tensor<1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top