Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,602 for importing (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

                        edge("org.test:dep:2.1", "org.test:dep:2.1")
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1898")
        def "can resolve pom importing version range"() {
            given:
            settingsFile << "rootProject.name = 'test' "
            buildFile << """
    repositories {
        maven {
            url "${mavenRepo.uri}"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/go/internal/srcimporter/srcimporter_test.go

    		}
    		return
    	}
    	t.Logf("import %q: %v", path, time.Since(t0))
    }
    
    // walkDir imports the all the packages with the given path
    // prefix recursively. It returns the number of packages
    // imported and whether importing was aborted because time
    // has passed endTime.
    func walkDir(t *testing.T, path string, endTime time.Time) (int, bool) {
    	if time.Now().After(endTime) {
    		t.Log("testing time used up")
    		return 0, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // canonicalize/optimizer.
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tf-standard-pipeline",
          "Run all the passes involved in transforming/optimizing the graph after "
          "importing into MLIR, without any target specialization.",
          CreateTFStandardPipeline);
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/background-tasks.md

    It is imported/included directly into FastAPI so that you can import it from `fastapi` and avoid accidentally importing the alternative `BackgroundTask` (without the `s` at the end) from `starlette.background`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

    import org.gradle.util.internal.VersionNumber
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    import static org.gradle.test.precondition.TestPrecondition.satisfied;
    import static org.gradle.test.precondition.TestPrecondition.notSatisfied;
    
    class IntegTestPreconditions {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

      void PruneGraph(GraphOp graph);
    
      llvm::SmallDenseSet<mlir::StringAttr, 4> ops_to_preserve_ids_;
    };
    
    // Checks if a tf_executor.Graph can be pruned.
    // For TensorFlow V1.0 compatibility: when importing a graph without providing
    // feeds/fetches/targets we should not attempt to prune. The best approximation
    // here is to check if the graph is of the "main" function and does not have the
    // "tf.entry_function" attribute defined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/gcimporter_test.go

    	if len(packageFiles) > 0 || len(pkgImports) > 0 {
    		importcfgfile = filepath.Join(outdirname, basename) + ".importcfg"
    		testenv.WriteImportcfg(t, importcfgfile, packageFiles, pkgImports...)
    	}
    
    	pkgpath := path.Join("testdata", basename)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/search/search.go

    			if err != nil {
    				if _, noGo := err.(*build.NoGoError); noGo {
    					// The package does not actually exist, so record neither the package
    					// nor the error.
    					return nil
    				}
    				// There was an error importing path, but not matching it,
    				// which is all that Match promises to do.
    				// Ignore the import error.
    			}
    
    			// If we are expanding "cmd", skip main
    			// packages under cmd/vendor. At least as of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[composite_build_ide_integration]]
    === Importing into the IDE
    
    One of the most useful features of composite builds is IDE integration.
    
    Importing a composite build permits sources from separate Gradle builds to be easily developed together.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top