Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 9,162 for 3$ (0.03 sec)

  1. plugin/pkg/auth/authorizer/node/intset_test.go

    	assert.True(t, i.has(3))  // added
    	assert.False(t, i.has(4)) // not yet present
    
    	i.decrement(2) // to 0
    	i.increment(3) // to 2
    	i.decrement(3) // to 1
    	i.increment(4) // to 1
    
    	assert.False(t, i.has(1))
    	assert.False(t, i.has(2))
    	assert.True(t, i.has(3))
    	assert.True(t, i.has(4))
    
    	i.reset()
    	assert.False(t, i.has(1))
    	assert.False(t, i.has(2))
    	assert.False(t, i.has(3))
    	assert.False(t, i.has(4))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 10 18:24:13 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/device_assignment.mlir

      // CHECK: device = "cpu"
      %2 = "tf.Relu"(%1) {T = f32, _output_shapes = ["tfshape$dim { size: 3 } dim { size: 3 }"], device = "cpu"} : (tensor<3x3xf32>) -> tensor<3x3xf32>
      // CHECK: device = "gpu"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 924 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                                     data-validation-help="yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="doc.timestamp" class="col-sm-3 text-sm-right col-form-label">timestamp</label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/dilated-conv.mlir

      %2 = "tf.Conv2D"(%1, %arg1) {padding = "VALID", strides = [1, 1, 1, 1]} : (tensor<4x68x68x1xf32>, tensor<5x5x1x1xf32>) -> tensor<4x64x64x1xf32>
      %3 = "tf.Squeeze"(%2) {squeeze_dims = [3]} : (tensor<4x64x64x1xf32>) -> tensor<4x64x64xf32>
      %4 = "tf.BatchToSpaceND"(%3, %cst, %cst_2) : (tensor<4x64x64xf32>, tensor<2xi32>, tensor<2x2xi32>) -> tensor<1x128x128xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectEsimatedCost: checker.CostEstimate{Min: 3, Max: 3},
    			expectRuntimeCost:  3,
    		},
    		{
    			name:               "replace between all chars",
    			expr:               "'abc 123 def 123'.replace('', 'x')",
    			expectEsimatedCost: checker.CostEstimate{Min: 3, Max: 3},
    			expectRuntimeCost:  3,
    		},
    		{
    			name:               "replace with empty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. tests/test_path.py

                        "type": "value_error.number.not_le",
                        "ctx": {"limit_value": 3},
                    }
                ]
            }
        )
    
    
    def test_path_param_le_3():
        response = client.get("/path/param-le/3")
        assert response.status_code == 200
        assert response.json() == 3
    
    
    def test_path_param_le_2():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/list4.txt

    -- input --
    Text.
      1. List
    2. Not indented, not a list.
      3. Another list.
    
    -- gofmt --
    Text.
     1. List
    
    2. Not indented, not a list.
     3. Another list.
    
    -- text --
    Text.
     1. List
    
    2. Not indented, not a list.
     3. Another list.
    
    -- markdown --
    Text.
    
     1. List
    
    2\. Not indented, not a list.
    
     3. Another list.
    
    -- html --
    <p>Text.
    <ol>
    <li>List
    </ol>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 421 bytes
    - Viewed (0)
  8. test/ken/complit.go

    var	sa	= SA{[3]int{3001,3002,3003},[3]int{3004,3005,3006},[3]int{3007,3008,3009}}
    var	ss	= SS{S{3101,3102,3103},S{3104,3105,3106},S{3107,3108,3109}}
    var	sc	= SC{[]int{3201,3202,3203},[]int{3204,3205,3206},[]int{3207,3208,3209}}
    var	sm	= SM{M{0:3301,1:3302,2:3303}, M{0:3304,1:3305,2:3306}, M{0:3307,1:3308,2:3309}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue48558.go

    	_ = a, b, c // ERROR "assignment mismatch: 1 variable but 3 values"
    
    	_, _ = a // ERROR "assignment mismatch: 2 variables but 1 value"
    	_, _ = a, b
    	_, _ = a, b, c // ERROR "assignment mismatch: 2 variables but 3 values"
    
    	_, _, _ = a    // ERROR "assignment mismatch: 3 variables but 1 value"
    	_, _, _ = a, b // ERROR "assignment mismatch: 3 variables but 2 values"
    	_, _, _ = a, b, c
    }
    
    func f1() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetEntrySetTester.java

      @MultisetFeature.Require(ENTRIES_ARE_VIEWS)
      public void testEntryViewReflectsRemove() {
        initThreeCopies();
        assertEquals(3, getMultiset().count(e0()));
        Multiset.Entry<E> entry = Iterables.getOnlyElement(getMultiset().entrySet());
        assertEquals(3, entry.getCount());
        assertTrue(getMultiset().remove(e0()));
        assertEquals(2, entry.getCount());
        assertTrue(getMultiset().elementSet().remove(e0()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 9.6K bytes
    - Viewed (0)
Back to top