Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 658 for programs (0.13 sec)

  1. src/os/signal/doc.go

    delivered to the Notify channel, and the write will fail with an EPIPE
    error.
    
    This means that, by default, command line programs will behave like
    typical Unix command line programs, while other programs will not
    crash with SIGPIPE when writing to a closed network connection.
    
    # Go programs that use cgo or SWIG
    
    In a Go program that includes non-Go code, typically C/C++ code
    accessed using cgo or SWIG, Go's startup code normally runs first. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. doc/go_mem.html

    <p>
    The Go memory model restricts compiler optimizations as much as it does Go programs.
    Some compiler optimizations that would be valid in single-threaded programs are not valid in all Go programs.
    In particular, a compiler must not introduce writes that do not exist in the original program,
    it must not allow a single read to observe multiple values,
    and it must not allow a single write to write multiple values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		}
    		for _, p := range report.Programs {
    			// does the uploadConfig want this program?
    			// if so, copy over the Stacks and Counters
    			// that the uploadConfig mentions.
    			if !cfg.HasGoVersion(p.GoVersion) || !cfg.HasProgram(p.Program) || !cfg.HasVersion(p.Program, p.Version) {
    				continue
    			}
    			x := &telemetry.ProgramReport{
    				Program:   p.Program,
    				Version:   p.Version,
    				GOOS:      p.GOOS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv.go

    	}
    }
    
    // HasGoRun reports whether the current system can run programs with “go run”.
    func HasGoRun() bool {
    	// For now, having go run and having go build are the same.
    	return HasGoBuild()
    }
    
    // MustHaveGoRun checks that the current system can run programs with “go run”.
    // If not, MustHaveGoRun calls t.Skip with an explanation.
    func MustHaveGoRun(t testing.TB) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. doc/godebug.md

    (discussed below).
    
    When preparing any change that is permitted by Go 1 compatibility
    but may nonetheless break some existing programs,
    we first engineer the change to keep as many existing programs working as possible.
    For the remaining programs,
    we define a new GODEBUG setting that
    allows individual programs to opt back in to the old behavior.
    A GODEBUG setting may not be added if doing so is infeasible,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // the program. Programs working with memory-mapped files or unsafe
    // manipulation of memory may cause faults at non-nil addresses in less
    // dramatic situations; SetPanicOnFault allows such programs to request
    // that the runtime trigger only a panic, not a crash.
    // The runtime.Error that the runtime panics with may have an additional method:
    //
    //	Addr() uintptr
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler.h

      async_compiler_threads_.reset();
      // TODO(b/110813685): Think about the program ownership model. Programs are
      // currently owned by the compilation cache which means we must wait for
      // program completion in the destructor. There are multiple compilation caches
      // around, which complicates things a little. Perhaps having programs be
      // shared_ptrs (an invasive change) would make the model easier to reason
      // about?
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/settings.md

    You can also create an environment variable only for a specific program invocation, that is only available to that program, and only for its duration.
    
    To do that, create it right before the program itself, on the same line:
    
    <div class="termy">
    
    ```console
    // Create an env var MY_NAME in line for this program call
    $ MY_NAME="Wade Wilson" python main.py
    
    // Now it can read the environment variable
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    covered by this License; they are outside its scope. The act of running
    the Program is not restricted, and the output from the Program is
    covered only if its contents constitute a work based on the Program
    (independent of having been made by running the Program). Whether that
    is true depends on what the Program does.
    
    1. You may copy and distribute verbatim copies of the Program's source
    code as you receive it, in any medium, provided that you conspicuously
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Headers.kt

      /**
       * Returns the last value corresponding to the specified field parsed as an HTTP date, or null if
       * either the field is absent or cannot be parsed as a date.
       */
      @IgnoreJRERequirement // Only programs that already have Instant will use this.
      fun getInstant(name: String): Instant? {
        return getDate(name)?.toInstant()
      }
    
      /** Returns the number of field values. */
      @get:JvmName("size")
      val size: Int
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top