Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 432 for Imported (0.18 sec)

  1. src/cmd/go/alldocs.go

    //
    // # Controlling version control with GOVCS
    //
    // The 'go get' command can run version control commands like git
    // to download imported code. This functionality is critical to the decentralized
    // Go package ecosystem, in which code can be imported from any server,
    // but it is also a potential security problem, if a malicious server finds a
    // way to cause the invoked version control command to run unintended code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    // Save references to C.xxx for later processing.
    func (f *File) saveRef(n *ast.Expr, context astContext) {
    	sel := (*n).(*ast.SelectorExpr)
    	// For now, assume that the only instance of capital C is when
    	// used as the imported package identifier.
    	// The parser should take care of scoping in the future, so
    	// that we will be able to distinguish a "top-level C" from a
    	// local C.
    	if l, ok := sel.X.(*ast.Ident); !ok || l.Name != "C" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/noder/noder.go

    // absolute filename after applying -trimpath processing. This
    // filename form is suitable for use in object files and export data.
    //
    // If b's filename has already been trimmed (i.e., because it was read
    // in from an imported package's export data), then the filename is
    // returned unchanged.
    func trimFilename(b *syntax.PosBase) string {
    	filename := b.Filename()
    	if !b.Trimmed() {
    		dir := ""
    		if b.IsFileBase() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv.go

    	}
    }
    
    // WriteImportcfg writes an importcfg file used by the compiler or linker to
    // dstPath containing entries for the file mappings in packageFiles, as well
    // as for the packages transitively imported by the package(s) in pkgs.
    //
    // pkgs may include any package pattern that is valid to pass to 'go list',
    // so it may also be a list of Go source files all in the same directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    	// If imported is true then this package is imported by some
    	// package being tested. Make building the test version of the
    	// package depend on building the non-test version, so that we
    	// only report build errors once. Issue #44624.
    	if imported && ptest != p {
    		buildTest := b.CompileAction(work.ModeBuild, work.ModeBuild, ptest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/download.go

    				if len(modFile.Require) > 0 {
    					args = []string{"all"}
    				}
    			} else {
    				// As of Go 1.17, the go.mod file explicitly requires every module
    				// that provides any package imported by the main module.
    				// 'go mod download' is typically run before testing packages in the
    				// main module, so by default we shouldn't download the others
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    // That is, if a is a link of package main, a1 is the compile of package main
    // and a1.Deps is the actions for building packages directly imported by
    // package main (what the compiler needs). The linker needs all packages
    // transitively imported by the whole program; addTransitiveLinkDeps
    // makes sure those are present in a.Deps.
    // If shlib is non-empty, then a corresponds to the build and installation of shlib,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/r$'
    stdout '^example.com/s$'
    stdout '^example.com/t$'
    stdout '^example.com/u$'
    stdout '^example.com/w$'
    stdout '^example.com/x$'
    
    
    # 'go mod vendor' copies in only the packages transitively imported by the main
    # module, and omits their tests. As a result, the 'all' and '...' patterns
    # report fewer packages when using '-mod=vendor'.
    
    go mod vendor
    
    go list -f $PKGFMT -mod=vendor all
    stdout -count=8 '^.'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[interacting_with_composite_builds]]
    == Interacting with a composite build
    
    Interacting with a composite build is generally similar to a regular multi-project build.
    Tasks can be executed, tests can be run, and builds can be imported into the IDE.
    
    [[composite_build_executing_tasks]]
    === Executing tasks
    
    Tasks from an included build can be executed from the command-line or IDE in the same way as tasks from a regular multi-project build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                    else -> KaFirGenericSubstitutor(substitutor, this@KaSymbolByFirBuilder)
                }
            }
        }
    
        /**
         * We shouldn't expose imported callables as they may have different [org.jetbrains.kotlin.name.CallableId]s
         * than the original callables.
         * Resolved FIR has explicitly declared original objects receivers instead of such synthetic callables.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top