Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for writeFile (0.07 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

    1
    201105
    2
    
    CLEAN $urlKey ${entryMetadata.length} ${entryBody.length}
    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
        writeFile(cache.directoryPath, "$urlKey.1", entryBody)
        writeFile(cache.directoryPath, "journal", journalBody)
        cache = Cache(fileSystem, cache.directoryPath, Int.MAX_VALUE.toLong())
        client =
          client
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 121K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

            long accessTime = e.getAccessTime();
            assertThat(accessTime).isAtLeast(lastAccessTime);
            lastAccessTime = accessTime;
            long writeTime = e.getWriteTime();
            assertThat(writeTime).isAtLeast(lastWriteTime);
            lastWriteTime = writeTime;
          }
    
          lastAccessTime = 0;
          lastWriteTime = 0;
          for (ReferenceEntry<K, V> e : segment.accessQueue) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 114.9K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

            long accessTime = e.getAccessTime();
            assertThat(accessTime).isAtLeast(lastAccessTime);
            lastAccessTime = accessTime;
            long writeTime = e.getWriteTime();
            assertThat(writeTime).isAtLeast(lastWriteTime);
            lastWriteTime = writeTime;
          }
    
          lastAccessTime = 0;
          lastWriteTime = 0;
          for (ReferenceEntry<K, V> e : segment.accessQueue) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 116.4K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        // The code below is exactly the same for each write entry type.
    
        volatile long writeTime = Long.MAX_VALUE;
    
        @Override
        public long getWriteTime() {
          return writeTime;
        }
    
        @Override
        public void setWriteTime(long time) {
          this.writeTime = time;
        }
    
        // Guarded By Segment.this
        @Weak ReferenceEntry<K, V> nextWrite = nullEntry();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  5. guava/src/com/google/common/cache/LocalCache.java

        }
    
        // The code below is exactly the same for each write entry type.
    
        volatile long writeTime = Long.MAX_VALUE;
    
        @Override
        public long getWriteTime() {
          return writeTime;
        }
    
        @Override
        public void setWriteTime(long time) {
          this.writeTime = time;
        }
    
        // Guarded By Segment.this
        @Weak ReferenceEntry<K, V> nextWrite = nullEntry();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

      }
    
      private fun upload(
        chunked: Boolean,
        size: Int,
        writeSize: Int,
      ) {
        server.enqueue(MockResponse())
        executeSynchronously(
          Request(
            url = server.url("/"),
            body = requestBody(chunked, size.toLong(), writeSize),
          ),
        )
      }
    
      /** https://github.com/square/okhttp/issues/2344  */
      @Test
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 146.5K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.32.md

    - Fixed an issue in the kubelet that showed when writeable layers and read-only layers were at different paths within the same mount.
      Kubernetes was previously detecting that the image filesystem was split, even when that was not really the case ([#128344](https://github.com/kubernetes/kubernetes/pull/128344), [@kannon92](https://github.com/kannon92)) [SIG Node]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 26 23:58:21 GMT 2026
    - 470.5K bytes
    - Click Count (0)
  8. RELEASE.md

            `tf.io.decode_compressed`, `tf.io.decode_json_example`,
            `tf.io.decode_raw`, `tf.io.encode_base64`, `tf.io.matching_files`,
            `tf.io.parse_tensor`, `tf.io.read_file,`tf.io.write_file`.
        *   New endpoints in tf.linalg namespace: `tf.linalg.cross`,
            `tf.linalg.tensor_diag` (corresponds to `tf.diag`),
            `tf.linalg.tensor_diag_part` (corresponds to `tf.diag_part`).
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top