Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for binaryOnly (0.12 sec)

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

    	// Look for +build comments to accept or reject the file.
    	info.goBuildConstraint, info.plusBuildConstraints, info.binaryOnly, err = getConstraints(info.header)
    	if err != nil {
    		return nil, fmt.Errorf("%s: %v", name, err)
    	}
    
    	if ignoreBinaryOnly && info.binaryOnly {
    		info.binaryOnly = false // override info.binaryOnly
    	}
    
    	return info, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/read.go

    		isXTest := false
    		if isTest && strings.HasSuffix(tf.pkgName(), "_test") && p.Name != tf.pkgName() {
    			isXTest = true
    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if !isTest && tf.binaryOnly() {
    			p.BinaryOnly = true
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    		} else if pkg != p.Name {
    			// TODO(#45999): The choice of p.Name is arbitrary based on file iteration
    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/list/list.go

            StaleReason    string   // explanation for Stale==true
            Root           string   // Go root or Go path dir containing this package
            ConflictDir    string   // this directory shadows Dir in $GOPATH
            BinaryOnly     bool     // binary-only package (no longer supported)
            ForTest        string   // package is only for use in named test
            Export         string   // file containing export data (when using -export)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top