Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for thank (0.57 sec)

  1. src/cmd/go/internal/work/buildid.go

    				// link step will not ask us for the actual package file.
    				// Note that (*Builder).LinkAction arranged that all of
    				// a.triggers[0]'s dependencies other than a are also
    				// dependencies of a, so that we can be sure that,
    				// other than a.buildID, b.linkActionID is only accessing
    				// build IDs of completed actions.
    				oldBuildID := a.buildID
    				a.buildID = id[1] + buildIDSeparator + id[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/resolver.go

    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    							// the object may be imported into more than one file scope
    							// concurrently. See go.dev/issue/32154.)
    							if alt := fileScope.Lookup(name); alt != nil {
    								err := check.newError(DuplicateDecl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/noder/noder.go

    			p.pragcgo(pos, text)
    			pragma.Flag |= pragmaFlag("go:cgo_import_dynamic")
    			break
    		}
    		fallthrough
    	case strings.HasPrefix(text, "go:cgo_"):
    		// For security, we disallow //go:cgo_* directives other
    		// than cgo_import_dynamic outside cgo-generated files.
    		// Exception: they are allowed in the standard library, for runtime and syscall.
    		if !isCgoGeneratedFile(pos) && !base.Flag.Std {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    					// dependencies of m that are no longer present in the graph.
    					//
    					// TODO(bcmills): Can removing m as a root also cause the selected
    					// versions of other modules to rise? I think not: we're strictly
    					// removing non-root nodes from the module graph, which can't cause
    					// any root to decrease (because they're roots), and the dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    type APIFeature struct {
    	Package string // package that the feature is in
    	Build   string // build that the symbol is relevant for (e.g. GOOS, GOARCH)
    	Feature string // everything about the feature other than the package
    	Issue   int    // the issue that introduced the feature, or 0 if none
    }
    
    // This regexp has four capturing groups: package, build, feature and issue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/cshared_test.go

    			// This is an unfortunate workaround for
    			// https://github.com/mstorsjo/llvm-mingw/issues/205 in which
    			// we basically reimplement the contents of the dlltool.sh
    			// wrapper: https://git.io/JZFlU.
    			// TODO(thanm): remove this workaround once we can upgrade
    			// the compilers on the windows-arm64 builder.
    			dlltoolContents, err := os.ReadFile(args[0])
    			if err != nil {
    				return fmt.Errorf("unable to read dlltool: %v\n", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    		return
    	}
    
    	switch obj.color() {
    	case white:
    		assert(obj.Type() == nil)
    		// All color values other than white and black are considered grey.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	"golang.org/x/mod/module"
    )
    
    const (
    	// MaxZipFile is the maximum size in bytes of a module zip file. The
    	// go command will report an error if either the zip file or its extracted
    	// content is larger than this.
    	MaxZipFile = 500 << 20
    
    	// MaxGoMod is the maximum size in bytes of a go.mod file within a
    	// module zip file.
    	MaxGoMod = 16 << 20
    
    	// MaxLICENSE is the maximum size in bytes of a LICENSE file within a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  9. src/cmd/gofmt/gofmt.go

    const exclusive = -1
    
    // Add blocks until the sequencer has enough weight to spare, then adds f as a
    // task to be executed concurrently.
    //
    // If the weight is either negative or larger than the sequencer's maximum
    // weight, Add blocks until all other tasks have completed, then the task
    // executes exclusively (blocking all other calls to Add until it completes).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/mvs.go

    //
    // BuildList traverses the graph and returns a list containing the highest
    // version for each visited module. The first element of the returned list is
    // target itself; reqs.Max requires target.Version to compare higher than all
    // other versions, so no other version can be selected. The remaining elements
    // of the list are sorted by path.
    //
    // See https://research.swtch.com/vgo-mvs for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top