Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 9,695 for ADD (0.07 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

            registration.run {
                add(DefaultEncryptionService::class.java)
                add(ConfigurationCacheKey::class.java)
                add(ConfigurationCacheReport::class.java)
                add(DeprecatedFeaturesListener::class.java)
                add(DefaultBuildModelControllerServices::class.java)
                add(DefaultBuildToolingModelControllerFactory::class.java)
                add(ConfigurationCacheRepository::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output a0 =
          ops::Add(root.WithOpName("a0"), sw_0.output_false, sw_1.output_false);
      Output a1 = ops::Add(root.WithOpName("a1"), a0, sw_2.output_false);
    
      Output b0 =
          ops::Add(root.WithOpName("b0"), sw_1.output_false, sw_2.output_false);
      Output b1 = ops::Add(root.WithOpName("b1"), sw_0.output_false, b0);
    
      Output add = ops::Add(root.WithOpName("add"), a1, b1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/partial-device-name.pbtxt

    # CHECK-SAME:  outputs = "Sub"
    # CHECK:           %[[add:.*]], %[[add_control:.*]] = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ARG_1]]) {device = "/job:localhost/replica:0/task:0/device:CPU:0"}
    # CHECK:           %[[mul:.*]], %[[mul_control:.*]] = tf_executor.island wraps "tf.Mul"(%[[add]], %[[add]]) {device = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 26 20:48:36 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandlerTest.groovy

            1 * dependencyConstraintFactory.createDependencyConstraint("someOther") >> constraint2
            1 * dependencyConstraintSet.add(constraint1)
            1 * dependencyConstraintSet.add(constraint2)
        }
    
        void "can use dynamic method to add multiple dependency constraint from nested lists"() {
            def constraint1 = Mock(DependencyConstraint)
            def constraint2 = Mock(DependencyConstraint)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:06 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

            and:
            source.iterator().collect() == iterationOrder("foo", "bar", "baz", "fizz")
        }
    
        def "can add only realized providers"() {
            when:
            source.add("foo")
            source.add("bar")
            source.add("baz")
            source.add("fizz")
    
            then:
            source.iteratorNoFlush().collect() == iterationOrder("foo", "bar", "baz", "fizz")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

      protected List<Class<? extends AbstractTester>> getTesters() {
        List<Class<? extends AbstractTester>> testers = new ArrayList<>();
        testers.add(BiMapEntrySetTester.class);
        testers.add(BiMapPutTester.class);
        testers.add(BiMapInverseTester.class);
        testers.add(BiMapRemoveTester.class);
        testers.add(BiMapClearTester.class);
        return testers;
      }
    
      enum NoRecurse implements Feature<Void> {
        INVERSE;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/case_op.pbtxt

          experimental_debug_info {
            original_node_names: "add/y"
          }
        }
        node_def {
          name: "add_0"
          op: "AddV2"
          input: "add_const"
          input: "add/y:output:0"
          attr {
            key: "T"
            value {
              type: DT_INT32
            }
          }
          experimental_debug_info {
            original_node_names: "add"
          }
        }
        ret {
          key: "add"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 07 20:38:34 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HeadersChallengesTest.kt

        val headers =
          Headers.Builder()
            .add("WWW-Authenticate: Basic realm=\"protected area\"")
            .build()
        assertThat(headers.parseChallenges("WWW-Authenticate"))
          .isEqualTo(listOf(Challenge("Basic", mapOf("realm" to "protected area"))))
      }
    
      @Test fun basicChallengeWithCharset() {
        val headers =
          Headers.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/crypto/x509/platform_test.go

    				NotBefore:    now.Add(-time.Hour),
    				NotAfter:     now.Add(time.Hour),
    				ExtKeyUsage:  []ExtKeyUsage{ExtKeyUsageServerAuth},
    			},
    		},
    		{
    			name: "valid (with name)",
    			cert: &Certificate{
    				SerialNumber: big.NewInt(1),
    				DNSNames:     []string{"valid.testing.golang.invalid"},
    				NotBefore:    now.Add(-time.Hour),
    				NotAfter:     now.Add(time.Hour),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/waitgroup_test.go

    		time.Sleep(100 * time.Millisecond)
    		wg.Add(+1)
    		x = 2
    		wg.Add(-1)
    		c <- true
    	}()
    	<-c
    	<-c
    }
    
    // Incorrect usage: Add is too late.
    func TestRaceWaitGroupWrongWait(t *testing.T) {
    	c := make(chan bool, 2)
    	var x int
    	_ = x
    	var wg sync.WaitGroup
    	go func() {
    		wg.Add(1)
    		runtime.Gosched()
    		x = 1
    		wg.Done()
    		c <- true
    	}()
    	go func() {
    		wg.Add(1)
    		runtime.Gosched()
    		x = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 5.3K bytes
    - Viewed (0)
Back to top