Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Closes (0.56 sec)

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

    		if matchErr.Match.IsLiteral() {
    			// The error has a pattern has a pattern similar to the import path.
    			// It may be slightly different (./foo matching example.com/foo),
    			// but close enough to seem redundant.
    			// Unwrap the error so we don't show the pattern.
    			err = matchErr.Err
    		}
    	}
    
    	// Replace (possibly wrapped) *build.NoGoError with *load.NoGoError.
    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

    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    // retraction on the given version. The version may be a single version
    // like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    // -retract=version is a no-op if that retraction already exists.
    //
    // The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    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/work/exec.go

    	for _, arg := range cmd.Args[1:] {
    		fmt.Fprintf(&buf, "%s\n", encodeArg(arg))
    	}
    	if _, err := tf.Write(buf.Bytes()); err != nil {
    		tf.Close()
    		cleanup()
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    	if err := tf.Close(); err != nil {
    		cleanup()
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    	cmd.Args = []string{cmd.Args[0], "@" + tf.Name()}
    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