Search Options

Results per page
Sort
Preferred Languages
Advance

Results 571 - 580 of 615 for sata (0.02 sec)

  1. RateLimiter.java

    Executor executor) { L65: * for (Runnable task : tasks) { L66: * rateLimiter.acquire(); // may wait L67: * executor.execute(task); L68: * } L69: * } L70: * }</pre> L71: * L72: * <p>As another example, imagine that we produce a stream of data, and we want to cap it at 5kb per L73: * second. This could be accomplished by requiring a permit per byte, and specifying a rate of 5000 L74: * permits per second: L75: * L76: * <pre>{@code L77: * final RateLimiter rateLimiter = RateLimiter.create(5000.0);...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:51:36 UTC 2024
      21.6K bytes
  2. CHANGELOG-1.29.md

    PreFilter plugin returns nodes that do not exist. ([#124559](https://github.com/kubernetes/kubernetes/pull/124559), [@chengjoey](https://github.com/chengjoey)) [SIG Scheduling and Testing] L884:- Fixes a 1.29.0 regression that introduced a possible data race that could cause panics in kube-controller-manager and kube-scheduler ([#124518](https://github.com/kubernetes/kubernetes/pull/124518), [@wojtek-t](https://github.com/wojtek-t)) [SIG API Machinery and Scheduling] L885:- Kubeadm: fix a bug when...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Oct 23 04:37:31 UTC 2024
      375.1K bytes
      1 views
  3. ImmutableSetMultimap.java

    iteration ordering of the {@code L417: * multimap.asMap()} view. Repeated occurrences of an entry in the multimap after the first are L418: * ignored. L419: * L420: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L421: * safe to do so. The exact circumstances under which a copy will or will not be performed are L422: * undocumented and subject to change. L423: * L424: * @throws NullPointerException if any key or value in {@code multimap}...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      26.2K bytes
  4. Network.java

    L20:import com.google.errorprone.annotations.DoNotMock; L21:import java.util.Set; L22:import javax.annotation.CheckForNull; L23: L24:/** L25: * An interface for <a L26: * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data, L27: * whose edges are unique objects. L28: * L29: * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes. L30: * L31: * <p>There are three primary interfaces provided to represent graphs. In order of increasing L32:...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      21.1K bytes
  5. ImmutableBiMap.java

    undefined. L522: * L523: * <p>The returned {@code BiMap} iterates over entries in the same order as the {@code entrySet} L524: * of the original map. L525: * L526: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L527: * safe to do so. The exact circumstances under which a copy will or will not be performed are L528: * undocumented and subject to change. L529: * L530: * @throws IllegalArgumentException if two keys have the same value or two...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      22.6K bytes
  6. CHANGELOG-1.6.md

    WARNING: etcd backup strongly recommended L1151: L1152:Before updating to 1.6, you are strongly recommended to back up your etcd data. L1153:Please consult the installation procedure you are using (kargo, kops, kube-up, L1154:kube-aws, kubeadm etc) for specific advice. L1155: L1156:1.6 encourages etcd3, and switching from etcd2 to etcd3 involves a full L1157:migration of data between different storage engines. You must stop the API L1158:from writing to etcd during an etcd2 -> etcd3 migration. HA installations...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Dec 24 02:28:26 UTC 2020
      304K bytes
  7. ImmutableMultimap.java

    immutable multimap containing the same mappings as {@code multimap}, in the L378: * "key-grouped" iteration order described in the class documentation. L379: * L380: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L381: * safe to do so. The exact circumstances under which a copy will or will not be performed are L382: * undocumented and subject to change. L383: * L384: * @throws NullPointerException if any key or value in {@code multimap}...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      27.9K bytes
  8. Stats.java

    already known, use the appropriate {@code L49: * Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of L50: * {@code Number}, and primitive varargs are supported. L51: * <li>Or, to avoid storing up all the data first, create a {@link StatsAccumulator} instance, L52: * feed values to it as you get them, then call {@link StatsAccumulator#snapshot}. L53: * </ul> L54: * L55: * <p>Static convenience methods called {@code meanOf} are also provided for users...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 23 16:45:30 UTC 2024
      24.9K bytes
  9. CHANGELOG-1.24.md

    ernetes/kubernetes/pull/108129), [@ahg-g](https://github.com/ahg-g)) L2548:- The AnyVolumeDataSource feature is now beta, and the feature gate is enabled by default. In order to provide user feedback on PVCs with data sources, deployers must install the VolumePopulators CRD and the data-source-validator controller. ([#108736](https://github.com/kubernetes/kubernetes/pull/108736), [@bswartz](https://github.com/bswartz)) L2549:- The CertificateSigningRequest `spec.expirationSeconds` API field has graduated...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Aug 24 00:02:43 UTC 2023
      473.4K bytes
  10. ImmutableMapTest.java

    // SerializableTester L927: @SuppressWarnings("unchecked") L928: public void ignore_testSerializationNoDuplication_regularImmutableMap() throws Exception { L929: // Tests that serializing a map, its keySet, and values only writes the underlying data once. L930: L931: Object[] entries = new Object[2000]; L932: for (int i = 0; i < entries.length; i++) { L933: entries[i] = i; L934: } L935: L936: ImmutableMap<Integer, Integer> map = RegularImmutableMap.create(entries.length / 2, entries);...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      36.6K bytes
Back to top