Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 645 for earliest (0.19 sec)

  1. src/runtime/time.go

    // any timers that have been modified to run earlier, and puts them in
    // the correct place in the heap. While looking for those timers,
    // it also moves timers that have been modified to run later,
    // and removes deleted timers. The caller must have locked ts.
    func (ts *timers) adjust(now int64, force bool) {
    	ts.trace("adjust")
    	assertLockHeld(&ts.mu)
    	// If we haven't yet reached the time of the earliest modified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    		}
    	}
    }
    
    func TestScanErrors(t *testing.T) {
    	for _, test := range []struct {
    		src, err  string
    		line, col uint // 0-based
    	}{
    		// Note: Positions for lexical errors are the earliest position
    		// where the error is apparent, not the beginning of the respective
    		// token.
    
    		// rune-level errors
    		{"fo\x00o", "invalid NUL character", 0, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/RateLimiter.java

        long momentAvailable = reserveEarliestAvailable(permits, nowMicros);
        return max(momentAvailable - nowMicros, 0);
      }
    
      /**
       * Returns the earliest time that permits are available (with one caveat).
       *
       * @return the time that permits are available, or, if permits are available immediately, an
       *     arbitrary past or present time
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    ====
    ----
    $ gradle -DgradlePropertiesProp=commandLineValue
    ----
    ====
    
    Note that <<init_scripts.adoc#init_scripts, initialization scripts>> can't read Gradle properties directly.
    The earliest Gradle properties can be read in initialization scripts is on `settingsEvaluated {}`:
    
    *Example 5:* Reading Gradle properties from initialization scripts:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    			// The smaller the length of pods, the higher the score.
    			return -int64(len(nodesToVictims[node].Pods))
    		}
    		latestStartTimeScoreFunc := func(node string) int64 {
    			// Get the earliest start time of all pods on the current node.
    			earliestStartTimeOnNode := util.GetEarliestPodStartTime(nodesToVictims[node])
    			if earliestStartTimeOnNode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // this will be the case.
      // This means that when we have put all out sections together some resource
      // inputs will have multiple TPUReplicateInput nodes, so we will need a final
      // pass to merge these together into the earliest copy.
      llvm::SetVector<int64_t> forward_variable_inputs;
    
      // Validate that the only resource inputs that are read by ops in
      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. src/io/io.go

    func ReadFull(r Reader, buf []byte) (n int, err error) {
    	return ReadAtLeast(r, buf, len(buf))
    }
    
    // CopyN copies n bytes (or until an error) from src to dst.
    // It returns the number of bytes copied and the earliest
    // error encountered while copying.
    // On return, written == n if and only if err == nil.
    //
    // If dst implements [ReaderFrom], the copy is implemented using it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/list/list.go

    (For tools, 'go list -m -u -json all' may be more convenient to parse.)
    
    The -versions flag causes list to set the Module's Versions field
    to a list of all known versions of that module, ordered according
    to semantic versioning, earliest to latest. The flag also changes
    the default output format to display the module path followed by the
    space-separated version list.
    
    The -retracted flag causes list to report information about retracted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/encoding/json/decode.go

    // or if a JSON number overflows the target type, Unmarshal
    // skips that field and completes the unmarshaling as best it can.
    // If no more serious errors are encountered, Unmarshal returns
    // an [UnmarshalTypeError] describing the earliest such error. In any
    // case, it's not guaranteed that all the remaining fields following
    // the problematic one will be unmarshaled into the target object.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            }
        }
    
        implementation "org:foo:1.0"
    }
    ----
    ======
    =====
    
    [[unsupported_ge_plugin_3.13]]
    ==== Earliest supported Develocity plugin version is 3.13.1
    
    Starting in Gradle 9.0, the earliest supported Develocity plugin version is 3.13.1.
    The plugin versions from 3.0 up to 3.13 will be ignored when applied.
    
    Upgrade to version 3.13.1 or later of the Develocity plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top