Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for XY (0.36 sec)

  1. guava-tests/test/com/google/common/base/CharMatcherTest.java

        doTestSetBits(CharMatcher.none());
        doTestSetBits(is('a'));
        doTestSetBits(isNot('a'));
        doTestSetBits(anyOf(""));
        doTestSetBits(anyOf("x"));
        doTestSetBits(anyOf("xy"));
        doTestSetBits(anyOf("CharMatcher"));
        doTestSetBits(noneOf("CharMatcher"));
        doTestSetBits(inRange('n', 'q'));
        doTestSetBits(forPredicate(Predicates.equalTo('c')));
        doTestSetBits(CharMatcher.ascii());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        doTestSetBits(CharMatcher.none());
        doTestSetBits(is('a'));
        doTestSetBits(isNot('a'));
        doTestSetBits(anyOf(""));
        doTestSetBits(anyOf("x"));
        doTestSetBits(anyOf("xy"));
        doTestSetBits(anyOf("CharMatcher"));
        doTestSetBits(noneOf("CharMatcher"));
        doTestSetBits(inRange('n', 'q'));
        doTestSetBits(forPredicate(Predicates.equalTo('c')));
        doTestSetBits(CharMatcher.ascii());
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  3. internal/bucket/replication/replication_test.go

    					Priority:                2,
    					DeleteMarkerReplication: DeleteMarkerReplication{Status: Disabled},
    					DeleteReplication:       DeleteReplication{Status: Enabled},
    					Filter:                  Filter{Prefix: "xy", And: And{}, Tag: Tag{Key: "k1", Value: "v1"}},
    				},
    				{
    					Status:                  Enabled,
    					Priority:                1,
    					DeleteMarkerReplication: DeleteMarkerReplication{Status: Enabled},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  4. configure.py

            'device at: https://developer.nvidia.com/cuda-gpus. Each capability '
            'can be specified as "x.y" or "compute_xy" to include both virtual and'
            ' binary GPU code, or as "sm_xy" to only include the binary '
            'code.\nPlease note that each additional compute capability '
            'significantly increases your build time and binary size, and that '
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  5. tensorflow/c/c_api_test.cc

      const float X = 3.0f, Y = 7.0f;
      TF_Operation* x = Placeholder(graph_, s_, "x", TF_FLOAT);
      TF_Operation* y = Placeholder(graph_, s_, "y", TF_FLOAT);
      TF_Operation* xy = Mul(x, y, graph_, s_, "xy");
      TF_Output dxy_dx, dxy_dy;
    
      TF_Output outputs[1] = {{xy, 0}};
      TF_Output inputs[1] = {{x, 0}};
      TF_AddGradients(graph_, outputs, 1, inputs, 1, nullptr, s_, &dxy_dx);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  6. .bazelrc

    # Select supported compute capabilities (supported graphics cards).
    # This is the same as the official TensorFlow builds.
    # See https://developer.nvidia.com/cuda-gpus#compute
    # `compute_XY` enables PTX embedding in addition to SASS. PTX
    # is forward compatible beyond the current compute capability major
    # release while SASS is only forward compatible inside the current
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
Back to top