Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for goBuildConstraint (0.13 sec)

  1. src/cmd/go/internal/modindex/read.go

    			}
    		}
    
    		var shouldBuild = true
    		if !ctxt.goodOSArchFile(name, allTags) && !ctxt.UseAllFiles {
    			shouldBuild = false
    		} else if goBuildConstraint := tf.goBuildConstraint(); goBuildConstraint != "" {
    			x, err := constraint.Parse(goBuildConstraint)
    			if err != nil {
    				return p, fmt.Errorf("%s: parsing //go:build line: %v", name, err)
    			}
    			shouldBuild = ctxt.eval(x, allTags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build.go

    	imports    []fileImport
    	embeds     []fileEmbed
    	directives []build.Directive
    
    	// Additional fields added to go/build's fileinfo for the purposes of the modindex package.
    	binaryOnly           bool
    	goBuildConstraint    string
    	plusBuildConstraints []string
    }
    
    type fileImport struct {
    	path string
    	pos  token.Pos
    	doc  *ast.CommentGroup
    }
    
    type fileEmbed struct {
    	pattern string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top