Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 515 for package3 (0.11 sec)

  1. src/cmd/go/internal/test/test.go

    requested benchmark results or verbose logging. After the package
    tests for all of the listed packages finish, and their output is
    printed, go test prints a final 'FAIL' status if any package test
    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    // imported by another package. When we have finished identifying the imports of
    // a package, we add the test for that package if it is needed. A test may be
    // needed if:
    // 	- the package matches a root pattern and tests of the roots were requested, or
    // 	- the package is in the main module and the "all" pattern is requested
    // 	  (because the "all" pattern includes the dependencies of tests in the main
    // 	  module), or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    						Query:       q.version,
    					})
    				}
    
    				packages, err := r.matchInModule(ctx, q.pattern, curM)
    				if err != nil {
    					return errSet(err)
    				}
    				if len(packages) > 0 {
    					return errSet(&modload.QueryMatchesPackagesInMainModuleError{
    						Pattern:  q.pattern,
    						Query:    q.version,
    						Packages: packages,
    					})
    				}
    
    				return r.tryWildcard(ctx, q, curM)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	Name          string   // package name
    	ImportComment string   // path in import comment on package statement
    	Doc           string   // documentation synopsis
    	ImportPath    string   // import path of package ("" if unknown)
    	Root          string   // root of Go tree where this package lives
    	SrcRoot       string   // package source root directory ("" if unknown)
    	PkgRoot       string   // package install root directory ("" if unknown)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // packages:
    //
    //  1. For each package marked with pkgInAll, the module path that provided that
    //     package is included as a root.
    //  2. For all packages, the module that provided that package either remains
    //     selected at the same version or is upgraded by the dependencies of a
    //     root.
    //
    // If any module that provided a package has been upgraded above its previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    		package p2
    		import "p1"
    		func F() { p1.F(true) }
    	`)
    	tg.runFail("install", "p2")
    	tg.grepStderr("no Go files", "did not complain about missing sources")
    
    	tg.tempFile("src/p1/missing.go", `//go:binary-only-package
    
    		package p1
    		import _ "fmt"
    		func G()
    	`)
    	tg.wantStale("p1", "binary-only package", "should NOT want to rebuild p1 (first)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		}
    	}
    
    	return
    }
    
    // packages returns the full list of packages to be run by this goTest. This
    // will always include at least one package.
    func (opts *goTest) packages() []string {
    	pkgs := opts.pkgs
    	if opts.pkg != "" {
    		pkgs = append(pkgs[:len(pkgs):len(pkgs)], opts.pkg)
    	}
    	if len(pkgs) == 0 {
    		panic("no packages")
    	}
    	return pkgs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    							assignedToUnit.Set(sym)
    						}
    						// Dupok symbols may be defined in multiple packages; the
    						// associated package for a dupok sym is chosen sort of
    						// arbitrarily (the first containing package that the linker
    						// loads). Canonicalizes its Pkg to the package with which
    						// it will be laid down in text.
    						if i == 1 /* DupTextSyms2 */ && l.SymPkg(sym) != lib.Pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/runtime/map.go

    		if h.extra != nil {
    			h.extra.oldoverflow = nil
    		}
    		h.flags &^= sameSizeGrow
    	}
    }
    
    // Reflect stubs. Called from ../reflect/asm_*.s
    
    // reflect_makemap is for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/modern-go/reflect2
    //   - github.com/goccy/go-json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top