Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LongArray (0.04 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. okhttp/src/main/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 Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top