Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BUILDABLE (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    Furthermore, the `--non-binaries` option shows non-buildable binaries in the report, `--no-non-buildable` hides them.
    Similarly, the `--test-suites` option shows test suites and `--no-test-suites` hides them.
    The option `--no-all` hides both non-buildable binaries and test suites from the report.
    
    [[sec:assemble_dependents]]
    === Assembling dependents
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    // MultiplePackageError describes a directory containing
    // multiple buildable Go source files for multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top