Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for negligible (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats_test.go

    				InformerFactory:   informerFactory,
    				FlowcontrolClient: flowcontrolClient,
    				// for the purposes of this test, serverCL ~= nominalCL since there is
    				// only 1 PL with large concurrency shares, making mandatory PLs negligible.
    				ServerConcurrencyLimit: testcase.nominalCL,
    				ReqsGaugeVec:           metrics.PriorityLevelConcurrencyGaugeVec,
    				ExecSeatsGaugeVec:      metrics.PriorityLevelExecutionSeatsGaugeVec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * This method was originally added in order to release the resources of the {@code classpath}
         * configurations used for resolving buildscript classpaths, as they consumed a non-negligible
         * amount of memory even after the buildscript classpath was assembled.
         * <p>
         * Future work in this area should remove the need of this method by instead caching resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/math/big/calibrate_test.go

    	sqrModeKaratsuba = "karatsubaSqr(x)"
    )
    
    func TestCalibrate(t *testing.T) {
    	if !*calibrate {
    		return
    	}
    
    	computeKaratsubaThresholds()
    
    	// compute basicSqrThreshold where overhead becomes negligible
    	minSqr := computeSqrThreshold(10, 30, 1, 3, sqrModeMul, sqrModeBasic)
    	// compute karatsubaSqrThreshold where karatsuba is faster
    	maxSqr := computeSqrThreshold(200, 500, 10, 3, sqrModeBasic, sqrModeKaratsuba)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    		}
    
    		// FIPS 186-4 makes us check k <= N - 2 and then add one.
    		// Checking 0 < k <= N - 1 is strictly equivalent.
    		// None of this matters anyway because the chance of selecting
    		// zero is cryptographically negligible.
    		if _, err = k.SetBytes(b, c.N); err == nil && k.IsZero() == 0 {
    			break
    		}
    
    		if testingOnlyRejectionSamplingLooped != nil {
    			testingOnlyRejectionSamplingLooped()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Throwables.java

       *
       * <ul>
       *   <li>{@code getStackTrace} takes {@code stackSize} time to return but then negligible time to
       *       retrieve each element of the returned list.
       *   <li>{@code lazyStackTrace} takes negligible time to return but then {@code 1/stackSize} time
       *       to retrieve each element of the returned list (probably slightly more than {@code
       *       1/stackSize}).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Throwables.java

       *
       * <ul>
       *   <li>{@code getStackTrace} takes {@code stackSize} time to return but then negligible time to
       *       retrieve each element of the returned list.
       *   <li>{@code lazyStackTrace} takes negligible time to return but then {@code 1/stackSize} time
       *       to retrieve each element of the returned list (probably slightly more than {@code
       *       1/stackSize}).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteStreams.java

       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
       * This value is intended to be large enough to make the overhead of system calls negligible,
       * without being so large that it causes problems for systems with atypical memory management if
       * approaches 2 or 3 are used.
       */
      private static final int ZERO_COPY_CHUNK_SIZE = 512 * 1024;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ByteStreams.java

       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
       * This value is intended to be large enough to make the overhead of system calls negligible,
       * without being so large that it causes problems for systems with atypical memory management if
       * approaches 2 or 3 are used.
       */
      private static final int ZERO_COPY_CHUNK_SIZE = 512 * 1024;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        new_outputs = root.signatures['serving_default'](
            input_tensor=ops.convert_to_tensor(input_data)
        )
    
        # Indirectly tests that the model is not quantized by asserting that there
        # are negligible numeric difference.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.000001)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/LongMath.java

       * to prove its primality. Values from miller-rabin.appspot.com.
       *
       * NOTE: We could get slightly better bases that would be treated as unsigned, but benchmarks
       * showed negligible performance improvements.
       */
      private static final long[][] millerRabinBaseSets = {
        {291830, 126401071349994536L},
        {885594168, 725270293939359937L, 3569819667048198375L},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top