Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 658 for programs (0.1 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    	tf.SetLinesForContent(content)
    	...
    	pass.Reportf(tf.LineStart(line), "oops")
    
    # Modular analysis with Facts
    
    To improve efficiency and scalability, large programs are routinely
    built using separate compilation: units of the program are compiled
    separately, and recompiled only when one of their dependencies changes;
    independent modules may be compiled in parallel. The same technique may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    // to the structural schema.
    // Each CompilationResult may contain:
    //   - non-nil Program, nil Error: The program was compiled successfully
    //   - nil Program, non-nil Error: Compilation resulted in an error
    //   - nil Program, nil Error: The provided rule was empty so compilation was not attempted
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/metrics.cc

    // Counter that tracks number of calls for each SavedModel write API. Summing
    // across "api_label" is not expected to equal the ".../write/count" cell value
    // because programs can invoke more than one API to save a single SM and
    // because the API may error out before successfully writing a SM.
    auto* saved_model_write_api = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/write/api",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    // names and line numbers, use [CallersFrames]. CallersFrames accounts
    // for inlined functions and adjusts the return program counters into
    // call program counters. Iterating over the returned slice of PCs
    // directly is discouraged, as is using [FuncForPC] on any of the
    // returned PCs, since these cannot account for inlining or return
    // program counter adjustment.
    func Callers(skip int, pc []uintptr) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/settings.md

        $ export MY_NAME="Wade Wilson"
    
        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "🚪 📋"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/runtime/metrics/doc.go

    		Memory that is reserved for or used to hold runtime metadata.
    
    	/memory/classes/os-stacks:bytes
    		Stack memory allocated by the underlying operating system.
    		In non-cgo programs this metric is currently zero. This may
    		change in the future.In cgo programs this metric includes
    		OS thread stacks allocated directly from the OS. Currently,
    		this only accounts for one stack in c-shared and c-archive build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. src/html/template/js.go

    // tokens, regular expression literal tokens, or division operators.
    //
    // This fails on some valid but nonsensical JavaScript programs like
    // "x = ++/foo/i" which is quite different than "x++/foo/i", but is not known to
    // fail on any known useful programs. It is based on the draft
    // JavaScript 2.0 lexical grammar and requires one token of lookbehind:
    // https://www.mozilla.org/js/language/js20-2000-07/rationale/syntax.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/metrics/description.go

    		Kind:        KindUint64,
    	},
    	{
    		Name: "/memory/classes/os-stacks:bytes",
    		Description: "Stack memory allocated by the underlying operating system. " +
    			"In non-cgo programs this metric is currently zero. This may change in the future." +
    			"In cgo programs this metric includes OS thread stacks allocated directly from the OS. " +
    			"Currently, this only accounts for one stack in c-shared and c-archive build modes, " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    // Above this length, the GC information is recorded as a GC program,
    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    // same speed. GC programs are never much larger and often more
    // compact. (If large arrays are involved, they can be arbitrarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top