Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for writeFile (0.24 sec)

  1. okhttp/src/test/java/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.directory.path.toPath(), Int.MAX_VALUE.toLong())
        client =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        writeFile(getCleanFile("g2", 0), "C")
        writeFile(getCleanFile("g2", 1), "D")
        writeFile(getCleanFile("g2", 1), "D")
        writeFile(cacheDir / "otherFile0", "E")
        writeFile(dir2 / "otherFile1", "F")
      }
    
      private fun assertGarbageFilesAllDeleted() {
        assertThat(filesystem.exists(getCleanFile("g1", 0))).isFalse()
        assertThat(filesystem.exists(getCleanFile("g1", 1))).isFalse()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  3. api/go1.19.txt

    pkg io/ioutil, func ReadDir //deprecated #42026
    pkg io/ioutil, func ReadFile //deprecated #42026
    pkg io/ioutil, func TempDir //deprecated #42026
    pkg io/ioutil, func TempFile //deprecated #42026
    pkg io/ioutil, func WriteFile //deprecated #42026
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  4. docs/metrics/healthcheck/README.md

        port: 9000
        scheme: HTTP
      initialDelaySeconds: 120
      periodSeconds: 15
      timeoutSeconds: 10
      successThreshold: 1
      failureThreshold: 3
    ```
    
    ## Cluster probe
    
    ### Cluster-writeable probe
    
    The reply is '200 OK' if cluster has write quorum if not it returns '503 Service Unavailable'.
    
    ```
    curl http://minio1:9001/minio/health/cluster
    HTTP/1.1 503 Service Unavailable
    Accept-Ranges: bytes
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jul 06 16:18:38 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg os, func ReadDir(string) ([]fs.DirEntry, error)
    pkg os, func ReadFile(string) ([]uint8, error)
    pkg os, func SameFile(fs.FileInfo, fs.FileInfo) bool
    pkg os, func Stat(string) (fs.FileInfo, error)
    pkg os, func WriteFile(string, []uint8, fs.FileMode) error
    pkg os, method (*File) Chmod(fs.FileMode) error
    pkg os, method (*File) ReadDir(int) ([]fs.DirEntry, error)
    pkg os, method (*File) Readdir(int) ([]fs.FileInfo, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg io/ioutil, func ReadFile(string) ([]uint8, error)
    pkg io/ioutil, func TempDir(string, string) (string, error)
    pkg io/ioutil, func TempFile(string, string) (*os.File, error)
    pkg io/ioutil, func WriteFile(string, []uint8, os.FileMode) error
    pkg io/ioutil, var Discard io.Writer
    pkg log, const Ldate ideal-int
    pkg log, const Llongfile ideal-int
    pkg log, const Lmicroseconds ideal-int
    pkg log, const Lshortfile ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.13.md

    - kube-controller-manager and cloud-controller-manager now hold generated serving certificates in-memory unless a writeable location is specified with --cert-dir ([#69884](https://github.com/kubernetes/kubernetes/pull/69884), [@liggitt](https://github.com/liggitt))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/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
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
Back to top