Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LongArray (0.1 sec)

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

       * @throws NullPointerException if array is null
       */
      public AtomicDoubleArray(double[] array) {
        int len = array.length;
        long[] longArray = new long[len];
        for (int i = 0; i < len; i++) {
          longArray[i] = doubleToRawLongBits(array[i]);
        }
        this.longs = new AtomicLongArray(longArray);
      }
    
      /**
       * Returns the length of the array.
       *
       * @return the length of the array
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

            done = true
          }
        }
      }
    
      internal inner class Entry internal constructor(
        internal val key: String,
      ) {
        /** Lengths of this entry's files. */
        internal val lengths: LongArray = LongArray(valueCount)
        internal val cleanFiles = mutableListOf<Path>()
        internal val dirtyFiles = mutableListOf<Path>()
    
        /** True if this entry has ever been published. */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
Back to top