Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 730 for Importer (0.11 sec)

  1. src/cmd/compile/internal/types2/api.go

    	// error found.
    	Error func(err error)
    
    	// An importer is used to import packages referred to from
    	// import declarations.
    	// If the installed importer implements ImporterFrom, the type
    	// checker calls ImportFrom instead of Import.
    	// The type checker reports an error if an importer is needed
    	// but none was installed.
    	Importer Importer
    
    	// If Sizes != nil, it provides the sizing functions for package unsafe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/importer_test.go

    // This file implements the (temporary) plumbing to get importing to work.
    
    package types2_test
    
    import (
    	gcimporter "cmd/compile/internal/importer"
    	"cmd/compile/internal/types2"
    	"io"
    )
    
    func defaultImporter() types2.Importer {
    	return &gcimports{
    		packages: make(map[string]*types2.Package),
    	}
    }
    
    type gcimports struct {
    	packages map[string]*types2.Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 25 19:24:25 UTC 2021
    - 913 bytes
    - Viewed (0)
  3. src/go/types/gotype.go

    	conf := types.Config{
    		FakeImportC: true,
    		Error: func(err error) {
    			if !*allErrors && errorCount >= 10 {
    				panic(bailout{})
    			}
    			report(err)
    		},
    		Importer: importer.ForCompiler(fset, *compiler, nil),
    		Sizes:    types.SizesFor(build.Default.Compiler, build.Default.GOARCH),
    	}
    
    	defer func() {
    		switch p := recover().(type) {
    		case nil, bailout:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

    flags.DEFINE_string('save_model_path', '', 'Path to save the model to.')
    FLAGS = flags.FLAGS
    
    
    def set_tf_options():
      # Default TF1.x uses reference variables that are not supported by SavedModel
      # v1 Importer. To use SavedModel V1 Importer, resource variables should be
      # enabled.
      tf.enable_resource_variables()
      tf.compat.v1.disable_eager_execution()
    
    
    # This function needs to take a "create_module_fn", as opposed to just the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/go/types/issues_test.go

    import "go/types"
    
    func main() {
    	var info types.Info
    	for _, obj := range info.Uses {
    		_ = obj.Pkg()
    	}
    }
    `
    	// like src0, but also imports go/importer
    	const src1 = `
    package main
    
    import (
    	"go/types"
    	_ "go/importer"
    )
    
    func main() {
    	var info types.Info
    	for _, obj := range info.Uses {
    		_ = obj.Pkg()
    	}
    }
    `
    	// like src1 but with different import order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/go/types/mono_test.go

    package types_test
    
    import (
    	"errors"
    	"fmt"
    	"go/importer"
    	"go/types"
    	"strings"
    	"testing"
    )
    
    func checkMono(t *testing.T, body string) error {
    	src := "package x; import `unsafe`; var _ unsafe.Pointer;\n" + body
    
    	var buf strings.Builder
    	conf := types.Config{
    		Error:    func(err error) { fmt.Fprintln(&buf, err) },
    		Importer: importer.Default(),
    	}
    	typecheck(src, &conf, nil)
    	if buf.Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/go/types/example_test.go

    `,
    	} {
    		files = append(files, mustParse(fset, src))
    	}
    
    	// Type-check a package consisting of these files.
    	// Type information for the imported "fmt" package
    	// comes from $GOROOT/pkg/$GOOS_$GOOARCH/fmt.a.
    	conf := types.Config{Importer: importer.Default()}
    	pkg, err := conf.Check("temperature", fset, files, nil)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Print the tree of scopes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // This only test the exporter and importer are working without min/max quantization parameters.
    
    func.func @main(tensor<40x37xf32>, tensor<40x37xf32>) -> tensor<40x40xf32> {
    ^bb0(%arg0: tensor<40x37xf32>, %arg1: tensor<40x37xf32>):
      %cst = arith.constant dense<1.0> : tensor<40xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15838.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test cases for issue #15838, and related failures.
    // Make sure the importer correctly sets up nodes for
    // label decls, goto, continue, break, and fallthrough
    // statements.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 00:32:03 UTC 2016
    - 370 bytes
    - Viewed (0)
  10. src/go/types/eval_test.go

    		switch gotypesalias.Value() {
    		case "", "1":
    			if strings.Contains(src, "interface{R}.Read") {
    				continue
    			}
    		}
    
    		files = append(files, file)
    	}
    
    	conf := Config{Importer: importer.Default()}
    	pkg, err := conf.Check("p", fset, files, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, file := range files {
    		for _, group := range file.Comments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top