Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,041 for 3$ (0.13 sec)

  1. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     Add 2
     BiasAdd 1
     ConcatV2 1
     Const 3
     GreaterEqual 1
     MatMul 1
     Mul 3
     Select 3
     Shape 1
     Sigmoid 3
     Split 1
     Tanh 2
    cluster 17 size 60
     Add 2
     AddN 4
     BiasAddGrad 1
     BroadcastGradientArgs 1
     Cast 2
     ConcatOffset 1
     ConcatV2 1
     Const 8
     MatMul 2
     Mul 6
     NoOp 2
     Reshape 9
     Select 5
     SigmoidGrad 3
     Slice 2
     Sum 9
     TanhGrad 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

     func (t <type 3>) .time.date (full <type -15>) (year <type -11>, month <type 18>, day <type -11>, yday <type -11>);
     func (t <type 3>) UTC () <type 3>;
     func (t <type 3>) Local () <type 3>;
     func (t <type 3>) In (loc <type 20 *<type 6>>) <type 3>;
     func (t <type 3>) Location () <type 21 *<type 6>>;
     func (t <type 3>) Zone () (name <type -16>, offset <type -11>);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/generator/DependencyTreeTest.groovy

            def classCount = amount(3, maxLevel) + 1
            when:
            tree.calculateClassDependencies(0, 0, classCount)
    
            then:
            def level4Class = classCount - 1
            tree.getTransitiveChildClassIds(level4Class).size() == 3
            def level3Class = tree.getTransitiveChildClassIds(level4Class).get(0)
            tree.getTransitiveChildClassIds(level3Class).size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tests/main.py

        return item_id
    
    
    @app.get("/path/param-gt-int/{item_id}")
    def get_path_param_gt_int(item_id: int = Path(gt=3)):
        return item_id
    
    
    @app.get("/path/param-le-int/{item_id}")
    def get_path_param_le_int(item_id: int = Path(le=3)):
        return item_id
    
    
    @app.get("/path/param-ge-int/{item_id}")
    def get_path_param_ge_int(item_id: int = Path(ge=3)):
        return item_id
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64latelower.go

    	// cond: zeroUpper56Bits(x,3)
    	// result: x
    	for {
    		x := v_0
    		if !(zeroUpper56Bits(x, 3)) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64latelower_OpAMD64MOVLQZX(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (MOVLQZX x)
    	// cond: zeroUpper32Bits(x,3)
    	// result: x
    	for {
    		x := v_0
    		if !(zeroUpper32Bits(x, 3)) {
    			break
    		}
    		v.copyOf(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/AbstractTableReadTest.java

        assertFalse(table.isEmpty());
      }
    
      public void testSize() {
        assertSize(0);
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertSize(3);
      }
    
      public void testEquals() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        // We know that we have only added non-null Characters.
        Table<String, Integer, Character> hashCopy =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        Map<String, Integer> filtered = Maps.filterKeys(unfiltered, NOT_LENGTH_3);
        unfiltered.put("two", 2);
        unfiltered.put("three", 3);
        unfiltered.put("four", 4);
        assertEquals(ImmutableMap.of("two", 2, "three", 3, "four", 4), unfiltered);
        assertEquals(ImmutableMap.of("three", 3, "four", 4), filtered);
    
        unfiltered.remove("three");
        assertEquals(ImmutableMap.of("two", 2, "four", 4), unfiltered);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

      // CHECK-NEXT: [[r1:%.*]] = tfrt_fallback_async.executeop {{.*}} "tf.BiasAdd"([[r0]], [[result]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 7.3K bytes
    - Viewed (0)
Back to top