Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for goBuildConstraint (0.11 sec)

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

    			continue
    		} else if info == nil {
    			p.sourceFiles = append(p.sourceFiles, &rawFile{name: name, ignoreFile: true})
    			continue
    		}
    		rf := &rawFile{
    			name:                 name,
    			goBuildConstraint:    info.goBuildConstraint,
    			plusBuildConstraints: info.plusBuildConstraints,
    			binaryOnly:           info.binaryOnly,
    			directives:           info.directives,
    		}
    		if info.parsed != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. 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)
  3. 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