Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Wiles (0.02 sec)

  1. src/cmd/go/internal/modfetch/codehost/git_test.go

    			for _, f := range z.File {
    				size, ok := tt.files[f.Name]
    				if !ok {
    					t.Errorf("ReadZip: unexpected file %s", f.Name)
    					continue
    				}
    				have[f.Name] = true
    				if size != ^uint64(0) && f.UncompressedSize64 != size {
    					t.Errorf("ReadZip: file %s has unexpected size %d != %d", f.Name, f.UncompressedSize64, size)
    				}
    			}
    			for name := range tt.files {
    				if !have[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    	for i, p := range files {
    		if !filepath.IsAbs(p) {
    			files[i] = pathf("%s/%s", dir, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/ssa_test.go

    // compiler flags set (and thus they can't just be _test.go files in
    // this directory).
    func TestCode(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	gotool := testenv.GoToolPath(t)
    
    	// Make a temporary directory to work in.
    	tmpdir := t.TempDir()
    
    	// Find all the test functions (and the files containing them).
    	var srcs []string // files containing Test functions
    	type test struct {
    		name      string // TestFoo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/vendor.go

    	var noGoError *build.NoGoError
    	if err != nil {
    		if errors.As(err, &noGoError) {
    			return // No source files in this package are built. Skip embeds in ignored files.
    		} else if !errors.As(err, &multiplePackageError) { // multiplePackageErrors are OK, but others are not.
    			base.Fatalf("internal error: failed to find embedded files of %s: %v\n", pkg, err)
    		}
    	}
    	var embedPatterns []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/errorcalls_test.go

    // errorfMinArgCount arguments (otherwise we should use check.error)
    // and use balanced parentheses/brackets.
    func TestErrorCalls(t *testing.T) {
    	files, err := pkgFiles(".")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, file := range files {
    		syntax.Inspect(file, func(n syntax.Node) bool {
    			call, _ := n.(*syntax.CallExpr)
    			if call == nil {
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/covdata/covdata.go

    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    subtract    subtract one set of data files from another set
    intersect   generate intersection of two sets of data files
    debugdump   dump data in human-readable format for debugging purposes
    `)
    	fmt.Fprintf(os.Stderr, "\nFor help on a specific subcommand, try:\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    // errors.
    //
    // The package is specified by a list of *syntax.Files and corresponding
    // file set, and the package path the package is identified with.
    // The clean path must not be empty or dot (".").
    func (conf *Config) Check(path string, files []*syntax.File, info *Info) (*Package, error) {
    	pkg := NewPackage(path, "")
    	return pkg, NewChecker(conf, pkg, info).Files(files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    		t.Helper()
    		t.Fatal(err)
    	}
    	return exe
    }
    
    // Top level tempdir for test.
    var testTempDir string
    
    // If set, this will preserve all the tmpdir files from the test run.
    var preserveTmp = flag.Bool("preservetmp", false, "keep tmpdir files for debugging")
    
    // TestMain used here so that we can leverage the test executable
    // itself as a cmd/covdata executable; compare to similar usage in
    // the cmd/go tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/cmd/go/scriptreadme_test.go

    This file is generated by 'go generate cmd/go'. DO NOT EDIT.
    
    This directory holds test scripts *.txt run during 'go test cmd/go'.
    To run a specific script foo.txt
    
    	go test cmd/go -run=Script/^foo$
    
    In general script files should have short names: a few words, not whole sentences.
    The first word should be the general category of behavior being tested,
    often the name of a go subcommand (list, build, test, ...) or concept (vendor, pattern).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/asm/doc.go

    Flags:
    
    	-D name[=value]
    		Predefine symbol name with an optional simple value.
    		Can be repeated to define multiple symbols.
    	-I dir1 -I dir2
    		Search for #include files in dir1, dir2, etc,
    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-S
    		Print assembly and machine code.
    	-V
    		Print assembler version and exit.
    	-debug
    		Dump instructions as they are parsed.
    	-dynlink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top