Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for Approximates (0.59 sec)

  1. src/cmd/go/internal/cache/cache.go

    	trimLimit     = 5 * 24 * time.Hour
    )
    
    // used makes a best-effort attempt to update mtime on file,
    // so that mtime reflects cache access time.
    //
    // Because the reflection only needs to be approximate,
    // and to reduce the amount of disk activity caused by using
    // cache entries, used only updates the mtime if the current
    // mtime is more than an hour old. This heuristic eliminates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    	}
    	return h
    }
    
    // A dedup is a deduplicator for call stacks, so that we only print
    // a report for new call stacks, not for call stacks we've already
    // reported.
    //
    // It has two modes: an approximate but lock-free mode that
    // may still emit some duplicates, and a precise mode that uses
    // a lock and never emits duplicates.
    type dedup struct {
    	// 128-entry 4-way, lossy cache for seenLossy
    	recent [128][4]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof.go

    // are waiting to acquire the lock will report contention when the lock is
    // finally unlocked (that is, at [sync.Mutex.Unlock]).
    //
    // Sample values correspond to the approximate cumulative time other goroutines
    // spent blocked waiting for the lock, subject to event-based sampling
    // specified by [runtime.SetMutexProfileFraction]. For example, if a caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    // intersects them to form the starting state for b. It puts that state
    // in blockLocs[b.ID].startState, and fills state.currentState with it.
    // It returns the start state and whether this is changed from the
    // previously approximated value of startState for this block.  After
    // the first call, subsequent calls can only shrink startState.
    //
    // Passing forLocationLists=true enables additional side-effects that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/match.go

    					have := h.haveTags[i]
    					if equalsRest(have.tag, w) {
    						return have, w, Exact
    					}
    				}
    			}
    			if w.ScriptID == 0 && w.RegionID == 0 {
    				// We skip all tags matching und for approximate matching, including
    				// private tags.
    				continue
    			}
    			max, _ = w.Maximize()
    			if h = m.index[max.LangID]; h == nil {
    				continue
    			}
    		}
    		pin := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/FluentIterable.java

     *     FluentIterable.from(database.getClientList())
     *         .filter(Client::isActiveInLastMonth)
     *         .transform(Object::toString)
     *         .limit(10)
     *         .toList();
     * }</pre>
     *
     * The approximate stream equivalent is:
     *
     * <pre>{@code
     * List<String> results =
     *     database.getClientList()
     *         .stream()
     *         .filter(Client::isActiveInLastMonth)
     *         .map(Object::toString)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/FluentIterable.java

     *     FluentIterable.from(database.getClientList())
     *         .filter(Client::isActiveInLastMonth)
     *         .transform(Object::toString)
     *         .limit(10)
     *         .toList();
     * }</pre>
     *
     * The approximate stream equivalent is:
     *
     * <pre>{@code
     * List<String> results =
     *     database.getClientList()
     *         .stream()
     *         .filter(Client::isActiveInLastMonth)
     *         .map(Object::toString)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        boolean longWait = TimeUnit.NANOSECONDS.toSeconds(thread.timeSpentBlocked) >= 5;
        // Count how long it actually took to return; we'll accept any number between the expected delay
        // and the approximate actual delay, to be robust to variance in thread scheduling.
        char overWaitNanosFirstDigit =
            Long.toString(
                    thread.timeSpentBlocked - TimeUnit.MILLISECONDS.toNanos(longWait ? 5000 : 3000))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table RandomOptions {
      seed: long;
      seed2: long;
    }
    
    table BucketizeOptions {
      boundaries: [float];  // The bucket boundaries.
    }
    
    table GeluOptions {
      approximate: bool;
    }
    
    table DynamicUpdateSliceOptions {
    }
    
    table UnsortedSegmentProdOptions {
    }
    
    table UnsortedSegmentMaxOptions {
    }
    
    table UnsortedSegmentSumOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

          ${goflags:+"${goflags[@]}"} \
          -gcflags="${gogcflags}" \
          -ldflags="${goldflags}" \
          -tags="${gotags:-}" \
          -o "${outfile}" \
          "${testpkg}"
      done
    }
    
    # Return approximate physical memory available in gigabytes.
    kube::golang::get_physmem() {
      local mem
    
      # Linux kernel version >=3.14, in kb
      if mem=$(grep MemAvailable /proc/meminfo | awk '{ print $2 }'); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top