Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 521 for Amount (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

     * from this file as necessary.
     *
     * This class also keeps a small buffer of bytes recently read from upstream. This is intended to
     * save a small amount of file I/O and data copying.
     */
    class Relay private constructor(
      /**
       * Read/write persistence of the upstream source and its metadata. Its layout is as follows:
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    func panicSlice3C(x int, y int)
    func panicSlice3CU(x uint, y int)
    func panicSliceConvert(x int, y int)
    
    var shiftError = error(errorString("negative shift amount"))
    
    //go:yeswritebarrierrec
    func panicshift() {
    	panicCheck1(getcallerpc(), "negative shift amount")
    	panic(shiftError)
    }
    
    var divideError = error(errorString("integer divide by zero"))
    
    //go:yeswritebarrierrec
    func panicdivide() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Lists.java

       * unspecified amount of padding; you almost certainly mean to call {@link
       * #newArrayListWithCapacity} (see that method for further advice on usage).
       *
       * <p><b>Note:</b> This method will soon be deprecated. Even in the rare case that you do want
       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  4. src/internal/fuzz/fuzz.go

    	Log io.Writer
    
    	// Timeout is the amount of wall clock time to spend fuzzing after the corpus
    	// has loaded. If zero, there will be no time limit.
    	Timeout time.Duration
    
    	// Limit is the number of random values to generate and test. If zero,
    	// there will be no limit on the number of generated values.
    	Limit int64
    
    	// MinimizeTimeout is the amount of wall clock time to spend minimizing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/crypto/md5/md5_test.go

    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/types.go

    	// metrics contains the specifications for which to use to calculate the
    	// desired replica count (the maximum replica count across all metrics will
    	// be used).  The desired replica count is calculated multiplying the
    	// ratio between the target value and the current value by the current
    	// number of pods.  Ergo, metrics used must decrease as the pod count is
    	// increased, and vice-versa.  See the individual metric source types for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  7. internal/dsync/dsync_test.go

    	b.ResetTimer()
    	b.ReportAllocs()
    
    	// This benchmark models a situation where spinning in the mutex should be
    	// profitable. To achieve this we create a goroutine per-proc.
    	// These goroutines access considerable amount of local data so that
    	// unnecessary rescheduling is penalized by cache misses.
    	m := NewDRWMutex(ds, "")
    	var acc0, acc1 uint64
    	b.RunParallel(func(pb *testing.PB) {
    		var data [16 << 10]uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. internal/hash/reader.go

    // if sha256Hex is not the empty string.
    //
    // If size resp. actualSize is unknown at the time of calling
    // NewReader then it should be set to -1.
    // When size is >=0 it *must* match the amount of data provided by r.
    //
    // NewReader may try merge the given size, MD5 and SHA256 values
    // into src - if src is a Reader - to avoid computing the same
    // checksums multiple times.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arm64.go

    func ARM64RegisterShift(reg, op, count int16) (int64, error) {
    	// the base register of shift operations must be general register.
    	if reg > arm64.REG_R31 || reg < arm64.REG_R0 {
    		return 0, errors.New("invalid register for shift operation")
    	}
    	return int64(reg&31)<<16 | int64(op)<<22 | int64(uint16(count)), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. src/net/netip/fuzz_test.go

    	// Basic zero IPv4 address.
    	"0.0.0.0",
    	// Basic non-zero IPv4 address.
    	"192.168.140.255",
    	// IPv4 address in windows-style "print all the digits" form.
    	"010.000.015.001",
    	// IPv4 address with a silly amount of leading zeros.
    	"000001.00000002.00000003.000000004",
    	// 4-in-6 with octet with leading zero
    	"::ffff:1.2.03.4",
    	// Basic zero IPv6 address.
    	"::",
    	// Localhost IPv6.
    	"::1",
    	// Fully expanded IPv6 address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top