Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 730 for Importer (0.18 sec)

  1. src/cmd/compile/internal/test/dep_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, dep := range strings.Fields(strings.Trim(string(out), "[]")) {
    		switch dep {
    		case "go/build", "go/scanner":
    			// cmd/compile/internal/importer introduces a dependency
    			// on go/build and go/token; cmd/compile/internal/ uses
    			// go/constant which uses go/token in its API. Once we
    			// got rid of those dependencies, enable this check again.
    			// TODO(gri) fix this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 853 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/android-application/README.adoc

    NOTE: You can open this sample inside a Android Studio IDE using the https://developer.android.com/studio/projects/create-project#ImportAProject[project importer].
    
    This sample shows how a simple Android application written in Java can be built with Gradle.
    The application was created following the https://developer.android.com/training/basics/firstapp[Build your first app guide].
    
    ====
    include::sample[dir="kotlin",files="app/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 846 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

    from tensorflow.core.framework import graph_pb2
    from tensorflow.core.protobuf import meta_graph_pb2
    from tensorflow.core.protobuf import saver_pb2
    from tensorflow.python.client import session
    from tensorflow.python.framework import importer
    from tensorflow.python.framework import ops
    from tensorflow.python.lib.io import file_io
    from tensorflow.python.saved_model import builder
    from tensorflow.python.saved_model import constants as saved_model_constants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how to configure a toolchain for a JVM project in Gradle.
    Your project usually targets a specific java version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/lookup_test.go

    	// Choose an arbitrary, large package.
    	path := filepath.Join(runtime.GOROOT(), "src", "net", "http")
    
    	files, err := pkgFiles(path)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	conf := Config{
    		Importer: defaultImporter(),
    	}
    
    	pkg, err := conf.Check("http", files, nil)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	scope := pkg.Scope()
    	names := scope.Names()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/groovy/library-publishing/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how a Groovy library can be published to a repository with Gradle.
    
    ====
    include::sample[dir="kotlin",files="my-library/build.gradle.kts[]"]
    include::sample[dir="groovy",files="my-library/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how a Spring Boot Web application can be built with Gradle.
    The application was generated using the https://start.spring.io/#!type=gradle-project[Spring Initializr].
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

    // graph transformation logic on Tensorflow graphs before importing to MLIR. It
    // serves as the source that provides the subgraphs requested by the savedmodel
    // MLIR importer, and at the same time it allows the implementation of this
    // class to transform the graph before feeding it to the importer.
    class SavedModelMLIRImportInput {
     public:
      SavedModelMLIRImportInput(const MetaGraphDef* meta_graph_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how problems can be emitted via the Problems API and how those reports are consumed on the IDE-side.
    
    ## Running the sample
    
    To run the sample, execute the `./gradlew :sample-ide:importBuild` command.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // (Note that the eventual API will likely be quite different.)
    //
    // The defaults honor a Config in a manner compatible with 'go vet'.
    var (
    	makeTypesImporter = func(cfg *Config, fset *token.FileSet) types.Importer {
    		compilerImporter := importer.ForCompiler(fset, cfg.Compiler, func(path string) (io.ReadCloser, error) {
    			// path is a resolved package path, not an import path.
    			file, ok := cfg.PackageFile[path]
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top