Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 656 for importer (0.11 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/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].
    
    == Defining and using a composite build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    		for _, err := range errlist {
    			t.Error(err)
    		}
    	}
    
    	// set up typechecker
    	var conf Config
    	*boolFieldAddr(&conf, "_Trace") = manual && testing.Verbose()
    	conf.Importer = importer.Default()
    	conf.Error = func(err error) {
    		if *haltOnError {
    			defer panic(err)
    		}
    		if listErrors {
    			t.Error(err)
    			return
    		}
    		// Ignore secondary error messages starting with "\t";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/constant, type Value interface, Kind() Kind
    pkg go/constant, type Value interface, String() string
    pkg go/constant, type Value interface, unexported methods
    pkg go/importer, func Default() types.Importer
    pkg go/importer, func For(string, Lookup) types.Importer
    pkg go/importer, type Lookup func(string) (io.ReadCloser, error)
    pkg go/parser, func ParseExprFrom(*token.FileSet, string, interface{}, Mode) (ast.Expr, error)
    pkg go/types, const Bool = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_predicates.go

    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    func Identical(x, y Type) bool {
    	var c comparer
    	return c.identical(x, y, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/go/types/typestring_test.go

    }
    
    func TestTypeString(t *testing.T) {
    	// The Go command is needed for the importer to determine the locations of stdlib .a files.
    	testenv.MustHaveGoBuild(t)
    
    	var tests []testEntry
    	tests = append(tests, independentTestTypes...)
    	tests = append(tests, dependentTestTypes...)
    
    	for _, test := range tests {
    		src := `package p; import "io"; type _ io.Writer; type T ` + test.src
    		pkg, err := typecheck(src, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    			Importer: importer.For(compiler, nil),
    		}
    
    		info := &Info{
    			Uses: make(map[*ast.Ident]Object),
    		}
    		pkg, _ := conf.Check("p", fset, files, info)
    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/go/types/api_predicates.go

    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    func Identical(x, y Type) bool {
    	var c comparer
    	return c.identical(x, y, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

    into a proper TF2 execution mode. This hides that boilerplate.
    """
    
    import tempfile
    
    from absl import app
    from absl import flags
    from absl import logging
    import tensorflow.compat.v2 as tf
    from tensorflow.python import pywrap_mlir  # pylint: disable=g-direct-tensorflow-import
    from tensorflow.python.lib.io import file_io
    
    # Use /tmp to make debugging the tests easier (see README.md)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

                     const std::string& device_type);
    
      ~Tf2XlaRewriter();
    
      // Compiles the given Operation with XlaBuilder and imports the generated HLO
      // via the HLO -> MHLO importer.
      absl::StatusOr<mhlo::TupleOp> CompileWithHloImporter(
          tensorflow::OpKernelContext& op_context);
    
      // Import the given XlaComputation into the parent module. Returns the given
      // generated function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring_test.go

    }
    
    func TestTypeString(t *testing.T) {
    	// The Go command is needed for the importer to determine the locations of stdlib .a files.
    	testenv.MustHaveGoBuild(t)
    
    	var tests []testEntry
    	tests = append(tests, independentTestTypes...)
    	tests = append(tests, dependentTestTypes...)
    
    	for _, test := range tests {
    		src := `package generic_p; import "io"; type _ io.Writer; type T ` + test.src
    		pkg, err := typecheck(src, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top