Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Depends (0.25 sec)

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

    		return nil
    	}
    
    	// We can't check standard packages with gccgo.
    	if cfg.BuildContext.Compiler == "gccgo" && p.Standard {
    		return nil
    	}
    
    	// The sort package depends on internal/reflectlite, but during bootstrap
    	// the path rewriting causes the normal internal checks to fail.
    	// Instead, just ignore the internal rules during bootstrap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // are elided from the presentation unless the -cmd flag is provided.
    //
    // When run with one argument, the argument is treated as a Go-syntax-like
    // representation of the item to be documented. What the argument selects depends
    // on what is installed in GOROOT and GOPATH, as well as the form of the argument,
    // which is schematically one of these:
    //
    //	go doc <pkg>
    //	go doc <sym>[.<methodOrField>]
    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. doc/go1.17_spec.html

    <code>t.m</code> is invoked.
    </li>
    
    <li>
    A variable, function, or method <code>x</code> depends on a variable
    <code>y</code> if <code>x</code>'s initialization expression or body
    (for functions and methods) contains a reference to <code>y</code>
    or to a function or method that depends on <code>y</code>.
    </li>
    </ul>
    
    <p>
    For example, given the declarations
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    		}
    		// Whether we're smart enough to avoid a complete rebuild
    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top