Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,487 for suffer (0.12 sec)

  1. src/crypto/rand/rand_getrandom.go

    // unix.GetRandom will immediately return ENOSYS and we will then fall back to
    // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS
    // result so we only suffer the syscall overhead once in this case.
    // If the kernel supports the getrandom() syscall, unix.GetRandom will block
    // until the kernel has sufficient randomness (as we don't use GRND_NONBLOCK).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:26:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LoggingEvictionListener.java

    import org.slf4j.Logger;
    
    import java.util.concurrent.atomic.AtomicInteger;
    
    class LoggingEvictionListener implements RemovalListener<Object, Object> {
        private static final String EVICTION_MITIGATION_MESSAGE = "\nPerformance may suffer from in-memory cache misses. Increase max heap size of Gradle build process to reduce cache misses.";
    
        private final AtomicInteger evictionCounter = new AtomicInteger(0);
        private final String cacheId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. docs/features/calls.md

    Calls can be canceled from any thread. This will fail the call if it hasn’t yet completed! Code that is writing the request body or reading the response body will suffer an `IOException` when its call is canceled.
    
    ## Dispatch
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload.go

    	// This is only an escape hatch for a lack of complete mapping of "Input changed -> Output changed".
    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/BloomFilter.java

      /** The funnel to translate Ts to bytes */
      private final Funnel<? super T> funnel;
    
      /** The strategy we employ to map an element T to {@code numHashFunctions} bit indexes. */
      private final Strategy strategy;
    
      /** Creates a BloomFilter. */
      private BloomFilter(
          LockFreeBitArray bits, int numHashFunctions, Funnel<? super T> funnel, Strategy strategy) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    [NOTE]
    ====
    Strict dependencies are to some extent similar to Maven's _nearest first_ strategy, but there are subtle differences:
    
    - _strict dependencies_ don't suffer an ordering problem: they are applied transitively to the subgraph, and it doesn't matter in which order dependencies are declared.
    - conflicting strict dependencies will trigger a build failure that you have to resolve
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

      override fun toString(): String = url
    
      /**
       * Returns the domain name of this URL's [host] that is one level beneath the public suffix by
       * consulting the [public suffix list](https://publicsuffix.org). Returns null if this URL's
       * [host] is an IP address or is considered a public suffix by the public suffix list.
       *
       * In general this method **should not** be used to test whether a domain is valid or routable.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. pkg/util/iptables/iptables.go

    	IsIPv6() bool
    	// Protocol returns the IP family this instance is managing,
    	Protocol() Protocol
    	// SaveInto calls `iptables-save` for table and stores result in a given buffer.
    	SaveInto(table Table, buffer *bytes.Buffer) error
    	// Restore runs `iptables-restore` passing data through []byte.
    	// table is the Table to restore
    	// data should be formatted like the output of SaveInto()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

        when you call `contains(null)` on them!
     *  Fix: Retain binary-compatibility in `okhttp3.internal.HttpHeaders.hasBody()`. Some unscrupulous
        coders call this and we don't want their users to suffer.
    
    
    ## Version 4.0.0
    
    _2019-06-26_
    
    **This release upgrades OkHttp to Kotlin.** We tried our best to make fast and safe to upgrade
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

            if (OperatingSystem.current().windows && javaVersion.isCompatibleWith(JavaVersion.VERSION_18)) {
                // Disable tests that suffer from charset issues under JDK 18 for now
                excludeTestsMatching "org.gradle.docs.samples.*.snippet-custom-model-internal-views_*_softwareModelExtend-iv-model.sample"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top