Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scriptEnv (0.28 sec)

  1. src/cmd/go/internal/work/exec.go

    	// need again. (On the other hand it does make repeated go test slower.)
    	// It also makes repeated go run slower, which is a win in itself:
    	// we don't want people to treat go run like a scripting environment.
    	if err := b.updateBuildID(a, a.Target, !a.Package.Internal.OmitDebug); err != nil {
    		return err
    	}
    
    	a.built = a.Target
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/net/http/server.go

    				//      respond with 501 (Unimplemented).
    				code := StatusNotImplemented
    
    				// We purposefully aren't echoing back the transfer-encoding's value,
    				// so as to mitigate the risk of cross side scripting by an attacker.
    				fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s%sUnsupported transfer encoding", code, StatusText(code), errorHeaders)
    				return
    
    			case isCommonNetReadError(err):
    				return // don't reply
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top