Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Often (0.02 sec)

  1. cmd/dynamic-timeouts.go

    1. failures++
    2. } else if dur > max {
    3. max = dur
    4. }
    5. }
    6.  
    7. failPct := float64(failures) / float64(len(entries))
    8.  
    9. if failPct > dynamicTimeoutIncreaseThresholdPct {
    10. // We are hitting the timeout too often, so increase the timeout by 25%
    11. timeout := atomic.LoadInt64(&dt.timeout) * 125 / 100
    12.  
    13. // Set upper cap.
    14. if timeout > int64(maxDynamicTimeout) {
    15. timeout = int64(maxDynamicTimeout)
    16. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/HashFunction.java

    1. * always returns zero could be called a hash function. It is not.)
    2. * </ul>
    3. *
    4. * <p>Summarizing the last two points: "equal yield equal <i>always</i>; unequal yield unequal
    5. * <i>often</i>." This is the most important characteristic of all hash functions.
    6. *
    7. * <h3>Desirable properties</h3>
    8. *
    9. * <p>A high-quality hash function strives for some subset of the following virtues:
    10. *
    11. * <ul>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/HashFunction.java

    1. * always returns zero could be called a hash function. It is not.)
    2. * </ul>
    3. *
    4. * <p>Summarizing the last two points: "equal yield equal <i>always</i>; unequal yield unequal
    5. * <i>often</i>." This is the most important characteristic of all hash functions.
    6. *
    7. * <h3>Desirable properties</h3>
    8. *
    9. * <p>A high-quality hash function strives for some subset of the following virtues:
    10. *
    11. * <ul>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

    1. * <li>All events for a given listener dispatch on the provided {@link #executor}.
    2. * <li>It is easy for the user to ensure that listeners are never invoked while holding locks.
    3. * </ul>
    4. *
    5. * The last point is subtle. Often the observable object will be managing its own internal state
    6. * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

    1. * A {@code PathType} can identify the Java class-path, the Java module-path,
    2. * or another kind of path for another programming language for example.
    3. * Path types are often exclusive. For example, a dependency should not be
    4. * both on the Java class-path and on the Java module-path.
    5. *
    6. * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths()
    7. *
    8. * @since 4.0.0
    9. */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/events/v1/generated.proto

    1. // items is a list of schema objects.
    2. repeated Event items = 2;
    3. }
    4.  
    5. // EventSeries contain information on series of events, i.e. thing that was/is happening
    6. // continuously for some time. How often to update the EventSeries is up to the event reporters.
    7. // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-params-numeric-validations.md

    1. ## Order the parameters as you need, tricks
    2.  
    3. /// tip
    4.  
    5. This is probably not as important or necessary if you use `Annotated`.
    6.  
    7. ///
    8.  
    9. Here's a **small trick** that can be handy, but you won't need it often.
    10.  
    11. If you want to:
    12.  
    13. * declare the `q` query parameter without a `Query` nor any default value
    14. * declare the path parameter `item_id` using `Path`
    15. * have them in a different order
    16. * not use `Annotated`
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/FluentFuture.java

    1. * }</pre>
    2. *
    3. * <h3>Alternatives</h3>
    4. *
    5. * <h4>Frameworks</h4>
    6. *
    7. * <p>When chaining together a graph of asynchronous operations, you will often find it easier to
    8. * use a framework. Frameworks automate the process, often adding features like monitoring,
    9. * debugging, and cancellation. Examples of frameworks include:
    10. *
    11. * <ul>
    12. * <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    1. However, this means anytime a workload changes (often), we need to update the policy.
    2.  
    3. Instead, the opposite was chosen: each workload will list the policies that select it.
    4. This works out to be more efficient in common cases where policies change much less often than workloads.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeBasedTable.java

    1. * iterators that don't support {@code remove()}. Otherwise, all optional operations are supported.
    2. * Null row keys, columns keys, and values are not supported.
    3. *
    4. * <p>Lookups by row key are often faster than lookups by column key, because the data is stored in
    5. * a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still runs
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top