Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Transitive (0.79 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf2:1.0
    +--- org:middle:1.0
    |    \\--- org:top:1.0
    |         \\--- conf
    \\--- org:top:1.0 (*)
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		When the special name "auto" is specified, for each main package in the
    //		build, the go command selects a file named "default.pgo" in the package's
    //		directory if that file exists, and applies it to the (transitive)
    //		dependencies of the main package (other packages are not affected).
    //		Special name "off" turns off PGO. The default is "auto".
    //	-pkgdir dir
    //		install and load all packages from dir instead of the usual locations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <name>exclusions</name>
              <version>4.0.0+</version>
              <description>Lists a set of artifacts that should be excluded from this dependency's
                artifact list when it comes to calculating transitive dependencies.</description>
              <association>
                <type>Exclusion</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      //
      // Note that the operands and body results need not be compatible as they are
      // never converted from one to the another nor there is a common source
      // tensors. Compatibility requirement is not transitive.
    
      if (!shape_invariant &&
          failed(VerifyTypeRangesAreCompatible(op, input_type, result_type)))
        return failure();
    
      // Skip the first pair as the While op operands and body function results does
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	cfile := objdir + "_cgo_main.c"
    	ofile := objdir + "_cgo_main.o"
    	if err := b.gcc(a, objdir, ofile, cflags, cfile); err != nil {
    		return "", "", err
    	}
    
    	// Gather .syso files from this package and all (transitive) dependencies.
    	var syso []string
    	seen := make(map[*Action]bool)
    	var gatherSyso func(*Action)
    	gatherSyso = func(a1 *Action) {
    		if seen[a1] {
    			return
    		}
    		seen[a1] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // control dependencies to data outputs and not removing single output nodes.
      // When a data output is replaced as a feed, unless there is another non feed
      // data output or an explicit control output used by the same node, transitive
      // control dependencies are not to be executed. For single output nodes,
      // Placeholders can be converted to a NoOp if there are no uses, and
      // PlaceholderWithDefault can be converted to an Identity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top