Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 169 for Unbounded (0.22 sec)

  1. guava/src/com/google/common/collect/EvictingQueue.java

     *
     * <p>An evicting queue must be configured with a maximum size. Each time an element is added to a
     * full queue, the queue automatically removes its head element. This is different from conventional
     * bounded queues, which either block or reject new elements when full.
     *
     * <p>This class is not thread-safe, and does not accept null elements.
     *
     * @author Kurt Alfred Kluever
     * @since 15.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/EvictingQueue.java

     *
     * <p>An evicting queue must be configured with a maximum size. Each time an element is added to a
     * full queue, the queue automatically removes its head element. This is different from conventional
     * bounded queues, which either block or reject new elements when full.
     *
     * <p>This class is not thread-safe, and does not accept null elements.
     *
     * @author Kurt Alfred Kluever
     * @since 15.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/os/dir_unix.go

    	// Readdir returns all the FileInfo from the directory in a
    	// single slice".
    	//
    	// But below, we use only negative to mean looping until the
    	// end and positive to mean bounded, with positive
    	// terminating at 0.
    	if n == 0 {
    		n = -1
    	}
    
    	for n != 0 {
    		// Refill the buffer if necessary
    		if d.bufp >= d.nbuf {
    			d.bufp = 0
    			var errno error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    			// starts running again when that timer expiration may
    			// cause Go code to run again).
    			//
    			// However, netbsd has a kernel bug that sometimes
    			// misses netpollBreak wake-ups, which can lead to
    			// unbounded delays servicing timers. If we detect this
    			// overrun, then startm to get something to handle the
    			// timer.
    			//
    			// See issue 42515 and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/math/exp.go

    //      We use a special Remez algorithm on [0,0.34658] to generate
    //      a polynomial of degree 5 to approximate R. The maximum error
    //      of this polynomial approximation is bounded by 2**-59. In
    //      other words,
    //          R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
    //      (where z=r*r, and the values of P1 to P5 are listed below)
    //      and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/trace/annotation.go

    // If the input context contains a task, the new task is its subtask.
    //
    // The taskType is used to classify task instances. Analysis tools
    // like the Go execution tracer may assume there are only a bounded
    // number of unique task types in the system.
    //
    // The returned Task's [Task.End] method is used to mark the task's end.
    // The trace tool measures task latency as the time between task creation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/unique/handle.go

    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    		cloneSeq:    makeCloneSeq(typ),
    	}
    	a, loaded := uniqueMaps.LoadOrStore(typ, m)
    	if !loaded {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/quota_linux.go

    // ID -> pod
    var quotaPodMap = make(map[common.QuotaID]types.UID)
    
    // Directory -> pod
    var dirPodMap = make(map[string]types.UID)
    
    // Backing device -> applier
    // This is *not* cleaned up; its size will be bounded.
    var devApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    
    // Directory -> applier
    var dirApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    var dirApplierLock sync.RWMutex
    
    // Pod -> refcount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Sinks SavedModel asset filenames to constants";
    
      let description = [{
        This pass sinks arguments of SavedModel methods that are bounded to
        `tf_saved_model.asset` into constants in the methods. After the pass, unused
        asset ops are removed from the module.
    
        This is to convert initialization methods with bound inputs into the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/SimpleTimeLimiter.java

        this.executor = checkNotNull(executor);
      }
    
      /**
       * Creates a TimeLimiter instance using the given executor service to execute method calls.
       *
       * <p><b>Warning:</b> using a bounded executor may be counterproductive! If the thread pool fills
       * up, any time callers spend waiting for a thread may count toward their time limit, and in this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 27 14:21:11 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top