Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,964 for importing (0.14 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-constraintsFromBOM/tests/importing-dependency-constraints-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  2. samples/bookinfo/README.md

     => importing to docker                                                                                                                                                                               0.1s
     => importing to docker                                                                                                                                                                               0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_import_err.txt

    # Test that errors importing packages are reported on the importing package,
    # not the imported package.
    
    env GO111MODULE=off # simplify vendor layout for test
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importvendor
    stdout 'importvendor: importvendor[\\/]p.go:2:8: vendor/p must be imported as p'
    stdout 'vendor/p: <nil>'
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importinternal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 20:27:52 UTC 2023
    - 771 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac_importer_exporter.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // Interface for Importing program to TAC (Target Aware Conversion) Module.
    // This class is an interface for importing program in TAC.
    // See TacModule in how to register it with the module and use it.
    class TacImporter {
     public:
      virtual ~TacImporter() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/imports/scan_test.go

    			foundBase64 = true
    		}
    		if p == "encoding/binary" {
    			// A dependency but not an import
    			t.Errorf("json reported as importing encoding/binary but does not")
    		}
    		if p == "net/http" {
    			// A test import but not an import
    			t.Errorf("json reported as importing net/http but does not")
    		}
    	}
    	if !foundBase64 {
    		t.Errorf("json missing import encoding/base64 (%q)", imports)
    	}
    
    	foundHTTP := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 21:55:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/go/internal/srcimporter/srcimporter.go

    		fset:     fset,
    		sizes:    types.SizesFor(ctxt.Compiler, ctxt.GOARCH), // uses go/types default if GOARCH not found
    		packages: packages,
    	}
    }
    
    // Importing is a sentinel taking the place in Importer.packages
    // for a package that is in the process of being imported.
    var importing types.Package
    
    // Import(path) is a shortcut for ImportFrom(path, ".", 0).
    func (p *Importer) Import(path string) (*types.Package, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  7. src/go/importer/importer.go

    type Lookup func(path string) (io.ReadCloser, error)
    
    // ForCompiler returns an Importer for importing from installed packages
    // for the compilers "gc" and "gccgo", or for importing directly
    // from the source if the compiler argument is "source". In this
    // latter case, importing may fail under circumstances where the
    // exported API is not entirely defined in pure Go source code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/GradleCustomizationSchemaBuildingComponent.kt

    
    /**
     * Provides declarative schema building features for a general-purpose Gradle DSL.
     *
     * The features are:
     * * importing properties using the [org.gradle.api.provider.Property] API,
     * * importing types from functions that return or configure custom types.
     *
     * If object conversion is supported by the schema, also brings the basic DCL conversion capabilities
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gopath_std_vendor.txt

    env GO111MODULE=off
    
    [!compiler:gc] skip
    
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOPATH[/\\]src[/\\]vendor
    
    # A package importing 'net/http' should resolve its dependencies
    # to the package 'vendor/golang.org/x/net/http2/hpack' within GOROOT.
    cd importnethttp
    go list -deps -f '{{.ImportPath}} {{.Dir}}'
    stdout ^vendor/golang.org/x/net/http2/hpack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/import_main.txt

    env GO111MODULE=off
    
    # Test that you cannot import a main package.
    # See golang.org/issue/4210 and golang.org/issue/17475.
    
    [short] skip
    cd $WORK
    
    # Importing package main from that package main's test should work.
    go build x
    go test -c x
    
    # Importing package main from another package should fail.
    ! go build p1
    stderr 'import "x" is a program, not an importable package'
    
    # ... even in that package's test.
    go build p2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 21:48:16 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top