Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,034 for programs (1.85 sec)

  1. src/unsafe/unsafe.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package unsafe contains operations that step around the type safety of Go programs.
    
    Packages that import unsafe may be non-portable and are not protected by the
    Go 1 compatibility guidelines.
    */
    package unsafe
    
    // ArbitraryType is here for the purposes of documentation only and is not actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	// GCCPUFraction is the fraction of this program's available
    	// CPU time used by the GC since the program started.
    	//
    	// GCCPUFraction is expressed as a number between 0 and 1,
    	// where 0 means GC has consumed none of this program's CPU. A
    	// program's available CPU time is defined as the integral of
    	// GOMAXPROCS since the program started. That is, if
    	// GOMAXPROCS is 2 and a program has been running for 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    // false in programs created by "go build".
    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/internal/trace/trace_test.go

    		cmd.Env = append(cmd.Env, "GODEBUG="+godebug)
    
    		// Capture stdout and stderr.
    		//
    		// The protocol for these programs is that stdout contains the trace data
    		// and stderr is an expectation in string format.
    		var traceBuf, errBuf bytes.Buffer
    		cmd.Stdout = &traceBuf
    		cmd.Stderr = &errBuf
    		// Run the program.
    		if err := cmd.Run(); err != nil {
    			if errBuf.Len() != 0 {
    				t.Logf("stderr: %s", string(errBuf.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/net/conf.go

    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    	// Darwin pops up annoying dialog boxes if programs try to
    	// do their own DNS requests, so prefer cgo.
    	case "darwin", "ios":
    		return true
    
    	// DNS requests don't work on Android, so prefer the cgo resolver.
    	// Issue #10714.
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    //	if err := cmd.Run(); err != nil {
    //		log.Fatal(err)
    //	}
    //
    // Setting the environment variable GODEBUG=execerrdot=0
    // disables generation of ErrDot entirely, temporarily restoring the pre-Go 1.19
    // behavior for programs that are unable to apply more targeted fixes.
    // A future version of Go may remove support for this variable.
    //
    // Before adding such overrides, make sure you understand the
    // security implications of doing so.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    // file or directory provided in the name argument is used.
    func ServeFile(w ResponseWriter, r *Request, name string) {
    	if containsDotDot(r.URL.Path) {
    		// Too many programs use r.URL.Path to construct the argument to
    		// serveFile. Reject the request under the assumption that happened
    		// here and ".." may not be wanted.
    		// Note that name might not contain "..", for example if code (still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    		if sourceAdj == nil {
    			file = rewrite(fileSet, file)
    		} else {
    			r.Warnf("warning: rewrite ignored for incomplete programs\n")
    		}
    	}
    
    	ast.SortImports(fileSet, file)
    
    	if *simplifyAST {
    		simplify(file)
    	}
    
    	res, err := format(fileSet, file, sourceAdj, indentAdj, src, printer.Config{Mode: printerMode, Tabwidth: tabWidth})
    	if err != nil {
    		return err
    	}
    
    	if !bytes.Equal(src, res) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/runtime/race_amd64.s

    #include "cgo/abi_amd64.h"
    
    // The following thunks allow calling the gcc-compiled race runtime directly
    // from Go code without going all the way through cgo.
    // First, it's much faster (up to 50% speedup for real Go programs).
    // Second, it eliminates race-related special cases from cgocall and scheduler.
    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the amd64 calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                  mountPropagation: Bidirectional
                # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,
                # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.
                - mountPath: /nodeproc
                  name: nodeproc
                  readOnly: true
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top