Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 656 for importer (0.11 sec)

  1. src/go/types/sizes_test.go

    	}
    }
    
    func TestIssue16902(t *testing.T) {
    	const src = `
    package a
    
    import "unsafe"
    
    const _ = unsafe.Offsetof(struct{ x int64 }{}.x)
    `
    	info := types.Info{Types: make(map[ast.Expr]types.TypeAndValue)}
    	conf := types.Config{
    		Importer: importer.Default(),
    		Sizes:    &types.StdSizes{WordSize: 8, MaxAlign: 8},
    	}
    	mustTypecheck(src, &conf, &info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/self_test.go

    		t.Fatal(err)
    	}
    
    	conf := Config{Importer: defaultImporter()}
    	_, err = conf.Check("cmd/compile/internal/types2", files, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func BenchmarkCheck(b *testing.B) {
    	testenv.MustHaveGoBuild(b) // The Go command is needed for the importer to determine the locations of stdlib .a files.
    
    	for _, p := range []string{
    		filepath.Join("src", "net", "http"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/importer_test.go

    // license that can be found in the LICENSE file.
    
    // 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)
  4. src/go/types/stdlib_test.go

    package types_test
    
    import (
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/importer"
    	"go/parser"
    	"go/scanner"
    	"go/token"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	. "go/types"
    )
    
    // The cmd/*/internal packages may have been deleted as part of a binary
    // release. Import from source instead.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

      explicit TacModule(const Options& options) : options_(options) {}
    
      void SetImporter(std::unique_ptr<TacImporter> importer) {
        importer_ = std::move(importer);
      }
    
      void SetExporter(std::unique_ptr<TacExporter> exporter) {
        exporter_ = std::move(exporter);
      }
    
      // Returns pointer to the TargetHardware that is identified by 'hardware_name'
      // Returns NULL If no hardware with this name found.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/internal/types/errors/codes_test.go

    package errors_test
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"internal/testenv"
    	"reflect"
    	"strings"
    	"testing"
    
    	. "go/types"
    )
    
    func TestErrorCodeExamples(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // go command needed to resolve std .a files for importer.Default().
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/go/types/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: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/internal/types/errors/generrordocs.go

    	fset := token.NewFileSet()
    	file, err := parser.ParseFile(fset, "codes.go", nil, parser.ParseComments)
    	if err != nil {
    		log.Fatalf("ParseFile failed: %s", err)
    	}
    	conf := Config{Importer: importer.Default()}
    	info := &Info{
    		Types: make(map[ast.Expr]TypeAndValue),
    		Defs:  make(map[*ast.Ident]Object),
    		Uses:  make(map[*ast.Ident]Object),
    	}
    	_, err = conf.Check("types", fset, []*ast.File{file}, info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:14:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/sizes_test.go

    	}
    }
    
    func TestIssue16902(t *testing.T) {
    	const src = `
    package a
    
    import "unsafe"
    
    const _ = unsafe.Offsetof(struct{ x int64 }{}.x)
    `
    	info := types2.Info{Types: make(map[syntax.Expr]types2.TypeAndValue)}
    	conf := types2.Config{
    		Importer: defaultImporter(),
    		Sizes:    &types2.StdSizes{WordSize: 8, MaxAlign: 8},
    	}
    	mustTypecheck(src, &conf, &info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/go/types/gotype.go

    to the same package.
    
    Imports are processed by importing directly from the source of
    imported packages (default), or by importing from compiled and
    installed packages (by setting -c to the respective compiler).
    
    The -c flag must be set to a compiler ("gc", "gccgo") when type-
    checking packages containing imports with relative import paths
    (import "./mypkg") because the source importer cannot know which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top