Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for dependency_c (0.17 sec)

  1. tensorflow/c/c_api_function_test.cc

                      {}, false);
    }
    
    TEST_F(CApiFunctionTest, ControlDependency) {
      /*
       *                  |  |    scalar
       *                  |  |    .
       *                  v  v   . <---- control dependency
       *                  add < -
       *                   |
       *                   v
       */
      // Define
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            when:
            expectAlignment {
                module('foo') tries('1.0') alignsTo('1.1') byVirtualPlatform()
            }
            run ':checkDeps', 'dependencyInsight', '--configuration', 'conf', '--dependency', 'foo'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:foo:1.0", "org:foo:1.1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def childService = Mock(TestStopService)
            child.addProvider(new ServiceRegistrationProvider() {
                @Provides
                Stoppable createCloseableService(Closeable dependency) {
                    childService
                }
            })
    
            when:
            def service = child.get(Stoppable)
            registry.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. src/time/format.go

    // appendInt appends the decimal form of x to b and returns the result.
    // If the decimal form (excluding sign) is shorter than width, the result is padded with leading 0's.
    // Duplicates functionality in strconv, but avoids dependency.
    func appendInt(b []byte, x int, width int) []byte {
    	u := uint(x)
    	if x < 0 {
    		b = append(b, '-')
    		u = uint(-x)
    	}
    
    	// 2-digit and 4-digit fields are the most common in time formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            Set<OperationDescriptor> result = new LinkedHashSet<OperationDescriptor>();
            for (InternalOperationDescriptor dependency : dependencies) {
                OperationDescriptor dependencyDescriptor = descriptorCache.get(dependency.getId());
                if (dependencyDescriptor != null) {
                    result.add(dependencyDescriptor);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=copy-method-with-dependency]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-method-with-dependency]"]
    ====
    
    These limitations make it preferable to use the `Copy` task wherever possible because of its built-in support for incremental building and task dependency inference.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	restore = addVar(sys, 1)
    	defer restore()
    	tg.wantStale("p1", "stale dependency: runtime/internal", "./testgo list claims p1 is NOT stale, incorrectly, after changing sys.go")
    	restore()
    	tg.wantNotStale("p1", "", "./testgo list claims p1 is stale, incorrectly, after changing back to old release")
    	addVar(sys, 2)
    	tg.wantStale("p1", "stale dependency: runtime", "./testgo list claims p1 is NOT stale, incorrectly, after changing sys.go again")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        } else if (def_op == forward_caller) {
          loop_body_func->emitOpError(
              "Unexpected loop carried variable dependency on sc_forward");
          return signalPassFailure();
        } else if (def_op == backward_caller) {
          loop_body_func->emitOpError(
              "Unexpected loop carried variable dependency on sc_");
          return signalPassFailure();
        } else if (llvm::isa<BlockArgument>(operand)) {
          // pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	os.Setenv("GOOS", goos)
    
    	timelog("build", "go_bootstrap")
    	xprintf("Building Go bootstrap cmd/go (go_bootstrap) using Go toolchain1.\n")
    	install("runtime")     // dependency not visible in sources; also sets up textflag.h
    	install("time/tzdata") // no dependency in sources; creates generated file
    	install("cmd/go")
    	if vflag > 0 {
    		xprintf("\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    # build is static and TensorFlow symbols (in Python only) are loaded into the
    # global symbol table in order to support op registration. This means that
    # projects building with Bazel and importing TensorFlow as a dependency will not
    # depend on libtensorflow_framework.so unless they opt in.
    tf_cc_shared_library(
        name = "tensorflow_framework",
        additional_linker_inputs = [
            "//tensorflow:tf_framework_version_script.lds",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top