Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fakefs (0.08 sec)

  1. src/cmd/go/alldocs.go

    // A query of the form path@version specifies the result of that query,
    // which is not limited to active modules.
    // See 'go help modules' for more about module queries.
    //
    // The template function "module" takes a single string argument
    // that must be a module path or query and returns the specified
    // module as a Module struct. If an error occurs, the result will
    // be a Module struct with a non-nil Error field.
    //
    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/go/internal/load/pkg.go

    // to the directory. If the package lives in c:\home\gopher\my\pkg then
    // the pseudo-import path is _/c_/home/gopher/my/pkg.
    // Using a pseudo-import path like this makes the ./ imports no longer
    // a special case, so that all the code to deal with ordinary imports works
    // automatically.
    func dirToImportPath(dir string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			a1.triggers = append(a1.triggers, a)
    		}
    		a.pending = len(a.Deps)
    		if a.pending == 0 {
    			b.ready.push(a)
    			b.readySema <- true
    		}
    	}
    
    	// Handle runs a single action and takes care of triggering
    	// any actions that are runnable as a result.
    	handle := func(ctx context.Context, a *Action) {
    		if a.json != nil {
    			a.json.TimeStart = time.Now()
    		}
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <p>
    A new, initialized slice value for a given element type <code>T</code> is
    made using the built-in function
    <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
    which takes a slice type
    and parameters specifying the length and optionally the capacity.
    A slice created with <code>make</code> always allocates a new, hidden array
    to which the returned slice value refers. That is, executing
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top