Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for supply (0.61 sec)

  1. src/archive/tar/writer.go

    	"slices"
    	"strings"
    	"time"
    )
    
    // Writer provides sequential writing of a tar archive.
    // [Writer.WriteHeader] begins a new file with the provided [Header],
    // and then Writer can be treated as an io.Writer to supply that file's data.
    type Writer struct {
    	w    io.Writer
    	pad  int64      // Amount of padding to write after current file entry
    	curr fileWriter // Writer for current file entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/git.go

    	return tags, nil
    }
    
    // repoSum returns a checksum of the entire repo state,
    // which can be checked (as Origin.RepoSum) to cache
    // the absence of a specific module version.
    // The caller must supply refs, the result of a successful r.loadRefs.
    func (r *gitRepo) repoSum(refs map[string]string) string {
    	var list []string
    	for ref := range refs {
    		list = append(list, ref)
    	}
    	sort.Strings(list)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    	actionID cache.ActionID // cache ID of action input
    	buildID  string         // build ID of action output
    
    	VetxOnly  bool       // Mode=="vet": only being called to supply info about dependencies
    	needVet   bool       // Mode=="build": need to fill in vet config
    	needBuild bool       // Mode=="build": need to do actual build (can be false if needVet is true)
    	vetCfg    *vetConfig // vet config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/codehost.go

    	c.Cancel = func() error { return c.Process.Signal(os.Interrupt) }
    	c.Dir = dir
    	c.Stdin = stdin
    	c.Stderr = &stderr
    	c.Stdout = &stdout
    	// For Git commands, manually supply GIT_DIR so Git works with safe.bareRepository=explicit set. Noop for other commands.
    	c.Env = append(c.Environ(), "GIT_DIR="+dir)
    	err := c.Run()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/fix/main_test.go

    		testenv.MustHaveGoBuild(t) // Really just 'go tool cgo', but close enough.
    
    		// The reportCgoError hook is global, so we can't set it per-test
    		// if we want to be able to run those tests in parallel.
    		// Instead, simply set it to panic on error: the goroutine dump
    		// from the panic should help us determine which test failed.
    		prevReportCgoError := reportCgoError
    		reportCgoError = func(err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gc.go

    			if p.ImportPath == "runtime/cgo" && strings.HasPrefix(sfile, "gcc_") {
    				continue
    			}
    			op, _ := fsys.OverlayPath(mkAbs(p.Dir, sfile))
    			args = append(args, op)
    		}
    
    		// Supply an empty go_asm.h as if the compiler had been run.
    		// -gensymabis parsing is lax enough that we don't need the
    		// actual definitions that would appear in go_asm.h.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    See also: go build, go vet.
    `,
    }
    
    var HelpTestflag = &base.Command{
    	UsageLine: "testflag",
    	Short:     "testing flags",
    	Long: `
    The 'go test' command takes both flags that apply to 'go test' itself
    and flags that apply to the resulting test binary.
    
    Several of the flags control profiling and write an execution profile
    suitable for "go tool pprof"; run "go tool pprof -h" for more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/pos.go

    }
    
    func (pos Pos) RelCol() uint {
    	b := pos.base
    	if b.Col() == 0 {
    		// base column is unknown => relative column is unknown
    		// (the current specification for line directives requires
    		// this to apply until the next PosBase/line directive,
    		// not just until the new newline)
    		return 0
    	}
    	if pos.Line() == b.Pos().Line() {
    		// pos on same line as pos base => column is relative to pos base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		A regular expression specifying additional flags to allow
    		to appear in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CFLAGS_DISALLOW
    		A regular expression specifying flags that must be disallowed
    		from appearing in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CPPFLAGS, CGO_CPPFLAGS_ALLOW, CGO_CPPFLAGS_DISALLOW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top