Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ShouldBuild (0.22 sec)

  1. src/go/build/build_test.go

    			tags := map[string]bool{}
    			shouldBuild, binaryOnly, err := ctx.shouldBuild([]byte(tt.content), tags)
    			if shouldBuild != tt.shouldBuild || binaryOnly != tt.binaryOnly || !reflect.DeepEqual(tags, tt.tags) || err != tt.err {
    				t.Errorf("mismatch:\n"+
    					"have shouldBuild=%v, binaryOnly=%v, tags=%v, err=%v\n"+
    					"want shouldBuild=%v, binaryOnly=%v, tags=%v, err=%v",
    					shouldBuild, binaryOnly, tags, err,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/imports/build.go

    	}
    
    	// If //go:build line is present, it controls.
    	// Otherwise fall back to +build processing.
    	var shouldBuild bool
    	switch {
    	case goBuild != nil:
    		x, err := constraint.Parse(string(goBuild))
    		if err != nil {
    			return false
    		}
    		shouldBuild = eval(x, tags, true)
    
    	default:
    		shouldBuild = true
    		p := content
    		for len(p) > 0 {
    			line := p
    			if i := bytes.IndexByte(line, '\n'); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modcmd/vendor.go

    		f, err := fsys.Open(filepath.Join(dir, info.Name()))
    		if err != nil {
    			base.Fatal(err)
    		}
    		defer f.Close()
    
    		content, err := imports.ReadImports(f, false, nil)
    		if err == nil && !imports.ShouldBuild(content, imports.AnyTags()) {
    			// The file is explicitly tagged "ignore", so it can't affect the build.
    			// Leave it out.
    			return false
    		}
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top