Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for optimization (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/Monitor.java

      }
    
      /**
       * Exactly like signalNextWaiter, but caller guarantees that guardToSkip need not be considered,
       * because caller has previously checked that guardToSkip.isSatisfied() returned false. An
       * optimization for the case that guardToSkip.isSatisfied() may be expensive.
       *
       * <p>We decided against using this method, since in practice, isSatisfied() is likely to be very
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/LongMath.java

        // The alternative (x + y) / 2 fails for large values.
        // The alternative (x + y) >>> 1 fails for negative values.
        return (x & y) + ((x ^ y) >> 1);
      }
    
      /*
       * This bitmask is used as an optimization for cheaply testing for divisibility by 2, 3, or 5.
       * Each bit is set to 1 for all remainders that indicate divisibility by 2, 3, or 5, so
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * specified by the given {@code builder}. The returned {@link MapMakerInternalMap} will be
       * optimized to saved memory. Since {@link MapMaker.Dummy} is a singleton, we don't need to store
       * any values at all. Because of this optimization, {@code build.getValueStrength()} must be
       * {@link Strength#STRONG}.
       *
       * <p>This method is intended to only be used by the internal implementation of {@link Interners},
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.15.md

    * reverts an aws-ebs volume provisioner optimization as we need to further discuss a viable optimization ([#78200](https://github.com/kubernetes/kubernetes/pull/78200), [@zhan849](https://github.com/zhan849))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - cloud.google.com/go/networkconnectivity: v1.11.0
    - cloud.google.com/go/networkmanagement: v1.6.0
    - cloud.google.com/go/networksecurity: v0.8.0
    - cloud.google.com/go/notebooks: v1.8.0
    - cloud.google.com/go/optimization: v1.3.1
    - cloud.google.com/go/orchestration: v1.6.0
    - cloud.google.com/go/orgpolicy: v1.10.0
    - cloud.google.com/go/osconfig: v1.11.0
    - cloud.google.com/go/oslogin: v1.9.0
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  6. CHANGELOG/CHANGELOG-1.30.md

    ### Bug or Regression
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.34.md

    - cloud.google.com/go/networkconnectivity: v1.14.3
    - cloud.google.com/go/networkmanagement: v1.9.3
    - cloud.google.com/go/networksecurity: v0.9.4
    - cloud.google.com/go/notebooks: v1.11.2
    - cloud.google.com/go/optimization: v1.6.2
    - cloud.google.com/go/orchestration: v1.8.4
    - cloud.google.com/go/orgpolicy: v1.12.0
    - cloud.google.com/go/osconfig: v1.12.4
    - cloud.google.com/go/oslogin: v1.13.0
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - cloud.google.com/go/networkmanagement: v1.6.0 → v1.8.0
    - cloud.google.com/go/networksecurity: v0.8.0 → v0.9.1
    - cloud.google.com/go/notebooks: v1.8.0 → v1.9.1
    - cloud.google.com/go/optimization: v1.3.1 → v1.4.1
    - cloud.google.com/go/orchestration: v1.6.0 → v1.8.1
    - cloud.google.com/go/orgpolicy: v1.10.0 → v1.11.1
    - cloud.google.com/go/osconfig: v1.11.0 → v1.12.1
    - cloud.google.com/go/oslogin: v1.9.0 → v1.10.1
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.32.md

    - cloud.google.com/go/networkmanagement: v1.8.0 → v1.9.3
    - cloud.google.com/go/networksecurity: v0.9.1 → v0.9.4
    - cloud.google.com/go/notebooks: v1.9.1 → v1.11.2
    - cloud.google.com/go/optimization: v1.4.1 → v1.6.2
    - cloud.google.com/go/orchestration: v1.8.1 → v1.8.4
    - cloud.google.com/go/orgpolicy: v1.11.1 → v1.12.0
    - cloud.google.com/go/osconfig: v1.12.1 → v1.12.4
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/primitives/UnsignedBytesBenchmark.java

        for (int i = 0; i < reps; ++i) {
          if (javaImpl.compare(ba1, ba2) != 0) {
            throw new Error(); // deoptimization
          }
        }
      }
    
      @Benchmark
      void longEqualUnsafe(int reps) {
        for (int i = 0; i < reps; ++i) {
          if (unsafeImpl.compare(ba1, ba2) != 0) {
            throw new Error(); // deoptimization
          }
        }
      }
    
      @Benchmark
      void diffLastJava(int reps) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top