Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for recordWrite (0.1 seconds)

  1. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object key = new Object();
        Object value = new Object();
        int hash = map.hash(key);
        DummyEntry<Object, Object> entry = createDummyEntry(key, hash, value, null);
        segment.recordWrite(entry, 1, map.ticker.read());
        segment.table.set(0, entry);
        segment.readCount.incrementAndGet();
        segment.count = 1;
        segment.totalWeight = 1;
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 12 00:25:21 GMT 2025
    - 117.5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object key = new Object();
        Object value = new Object();
        int hash = map.hash(key);
        DummyEntry<Object, Object> entry = createDummyEntry(key, hash, value, null);
        segment.recordWrite(entry, 1, map.ticker.read());
        segment.table.set(0, entry);
        segment.readCount.incrementAndGet();
        segment.count = 1;
        segment.totalWeight = 1;
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 12 00:25:21 GMT 2025
    - 115.9K bytes
    - Click Count (0)
  3. guava/src/com/google/common/cache/LocalCache.java

        return expiresAfterWrite();
      }
    
      boolean recordsWrite() {
        return expiresAfterWrite() || refreshes();
      }
    
      boolean recordsAccess() {
        return expiresAfterAccess();
      }
    
      boolean recordsTime() {
        return recordsWrite() || recordsAccess();
      }
    
      boolean usesWriteEntries() {
        return usesWriteQueue() || recordsWrite();
      }
    
      boolean usesAccessEntries() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
  4. RELEASE.md

    ## Bug Fixes and Other Changes
    
    *   Numerous C++ API updates.
    *   New op: `parallel_stack`.
    *   Introducing common tf io compression options constants for
        RecordReader/RecordWriter.
    *   Add `sparse_column_with_vocabulary_file`, to specify a feature column that
        transform string features to IDs, where the mapping is defined by a
        vocabulary file.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Oct 28 22:27:41 GMT 2025
    - 740.4K bytes
    - Click Count (3)
Back to Top