Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 126 for maine (0.32 sec)

  1. src/cmd/go/internal/modload/load.go

    			if _, ok, err := dirInModule(pkg, mainModulePrefix, modRoot, true); err != nil {
    				return "", err
    			} else if !ok {
    				// This main module could contain the directory but doesn't. Other main
    				// modules might contain the directory, so wait till we finish the loop
    				// to see if another main module contains directory. But if not,
    				// return an error.
    				if len(mainModulePrefix) > len(pkgNotFoundLongestPrefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		library that will be used when building with the -linkshared
    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    	if err != nil {
    		base.Errorf("go: %s: %v", p.Dir, err)
    		return
    	}
    
    	sh := work.NewShell("", fmt.Print)
    
    	packageFile := map[string]bool{}
    	if p.Name != "main" {
    		// Record which files are not in package main.
    		// The others are.
    		keep := func(list []string) {
    			for _, f := range list {
    				packageFile[f] = true
    			}
    		}
    		keep(p.GoFiles)
    		keep(p.CgoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/resolver.go

    		check.error(ident, InvalidInitDecl, "cannot declare init - must be func")
    		return
    	}
    
    	// spec: "The main package must have package name main and declare
    	// a function main that takes no arguments and returns no value."
    	if ident.Value == "main" && check.pkg.name == "main" {
    		check.error(ident, InvalidMainDecl, "cannot declare main - must be func")
    		return
    	}
    
    	check.declare(check.pkg.scope, ident, obj, nopos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    }
    
    // HasModRoot reports whether a main module is present.
    // HasModRoot may return false even if Enabled returns true: for example, 'get'
    // does not require a main module.
    func HasModRoot() bool {
    	Init()
    	return modRoots != nil
    }
    
    // MustHaveModRoot checks that a main module or main modules are present,
    // and calls base.Fatalf if there are no main modules.
    func MustHaveModRoot() {
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/import.go

    		}
    	}
    
    	return buf.String()
    }
    
    // A DirectImportFromImplicitDependencyError indicates a package directly
    // imported by a package or test in the main module that is satisfied by a
    // dependency that is not explicit in the main module's go.mod file.
    type DirectImportFromImplicitDependencyError struct {
    	ImporterPath string
    	ImportedPath string
    	Module       module.Version
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. src/cmd/dist/buildruntime.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.tempFile("src/main1/main.go", "package main\nimport _ \"p2\"\nfunc main() {}\n")
    
    	tg.run("list", "-f={{.Target}}", "p1")
    	p1 := strings.TrimSpace(tg.getStdout())
    	tg.run("list", "-f={{.Target}}", "p2")
    	p2 := strings.TrimSpace(tg.getStdout())
    	tg.run("list", "-f={{.Target}}", "main1")
    	main1 := strings.TrimSpace(tg.getStdout())
    
    	tg.run("install", "main1")
    
    	tg.mustExist(main1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/action.go

    }
    
    // addTransitiveLinkDeps adds to the link action a all packages
    // that are transitive dependencies of a1.Deps.
    // 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/default.go

    // and reports whether the effective value differs from GOCACHE.
    func DefaultDir() (string, bool) {
    	// Save the result of the first call to DefaultDir for later use in
    	// initDefaultCache. cmd/go/main.go explicitly sets GOCACHE so that
    	// subprocesses will inherit it, but that means initDefaultCache can't
    	// otherwise distinguish between an explicit "off" and a UserCacheDir error.
    
    	defaultDirOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top