Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for allocations (0.1 sec)

  1. guava/src/com/google/common/primitives/Shorts.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Shorts.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Chars.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Chars.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    		if subID != nil {
    			msg = fmt.Sprintf("Invalid Handler for type: %v", *subID)
    		}
    		gridLogIf(ctx, c.queueMsg(m, muxConnectError{Error: msg}))
    		return
    	}
    
    	// TODO: This causes allocations, but escape analysis doesn't really show the cause.
    	// If another faithful engineer wants to take a stab, feel free.
    	go func(m message) {
    		var start time.Time
    		if m.DeadlineMS > 0 {
    			start = time.Now()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Floats.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Doubles.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Bytes.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Floats.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Floats.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Ints.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Ints.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Doubles.java

       * toIndex} exclusive. This is equivalent to {@code
       * Collections.rotate(Bytes.asList(array).subList(fromIndex, toIndex), distance)}, but is
       * considerably faster and avoids allocations and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        /** The sequence number of the most recently committed edit to this entry. */
        internal var sequenceNumber: Long = 0
    
        init {
          // The names are repetitive so re-use the same builder to avoid allocations.
          val fileBuilder = StringBuilder(key).append('.')
          val truncateTo = fileBuilder.length
          for (i in 0 until valueCount) {
            fileBuilder.append(i)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

    
    ## Version 2.7.3
    
    _2016-02-06_
    
     *  Fix: Permit the trusted CA root to be pinned by `CertificatePinner`.
    
    
    ## Version 2.7.2
    
    _2016-01-07_
    
     *  Fix: Don't eagerly release stream allocations on cache hits. We might still
        need them to handle redirects.
    
    
    ## Version 2.7.1
    
    _2016-01-01_
    
     *  Fix: Don't do a health check on newly-created connections. This is
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top