Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for devNull (0.23 sec)

  1. cmd/admin-handlers.go

    		return
    	}
    	enc := json.NewEncoder(w)
    	if err := enc.Encode(results); err != nil {
    		return
    	}
    }
    
    // ClientDevNullExtraTime - return extratime for last devnull
    // [POST] /minio/admin/v3/speedtest/client/devnull/extratime
    func (a adminAPIHandlers) ClientDevNullExtraTime(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// On the iOS builder the command
    	//   $CC -Wl,--no-gc-sections -x c - -o /dev/null < /dev/null
    	// is failing with:
    	//   Unable to remove existing file: Invalid argument
    	tmp := os.DevNull
    	if runtime.GOOS == "windows" || runtime.GOOS == "ios" {
    		f, err := os.CreateTemp(b.WorkDir, "")
    		if err != nil {
    			return false
    		}
    		f.Close()
    		tmp = f.Name()
    		defer os.Remove(tmp)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		The operating system (GOOS) of the Go toolchain binaries.
    //	GOMOD
    //		The absolute path to the go.mod of the main module.
    //		If module-aware mode is enabled, but there is no go.mod, GOMOD will be
    //		os.DevNull ("/dev/null" on Unix-like systems, "NUL" on Windows).
    //		If module-aware mode is disabled, GOMOD will be the empty string.
    //	GOTOOLDIR
    //		The directory where the go tools (compile, cover, doc, etc...) are installed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    		The "return" statement returns the values of these variables.
    <pre>
    func complexF3() (re float64, im float64) {
    	re = 7.0
    	im = 4.0
    	return
    }
    
    func (devnull) Write(p []byte) (n int, _ error) {
    	n = len(p)
    	return
    }
    </pre>
    	</li>
    </ol>
    
    <p>
    Regardless of how they are declared, all the result values are initialized to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    streamlitapp.com
    
    // Snowplow Analytics : https://snowplowanalytics.com/
    // Submitted by Ian Streeter <******@****.***>
    try-snowplow.com
    
    // SourceHut : https://sourcehut.org
    // Submitted by Drew DeVault <******@****.***>
    srht.site
    
    // Stackhero : https://www.stackhero.io
    // Submitted by Adrien Gillon <******@****.***>
    stackhero-network.com
    
    // Staclar : https://staclar.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top