Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for cachez (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/cache-performance.png

    cache-performance.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 103.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/from-cache-origin.png

    from-cache-origin.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/first-non-cached-task.png

    first-non-cached-task.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 149K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-cache/fully-cached-task-execution.png

    fully-cached-task-execution.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 104.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/tutorial/mac-tar-cache-exp.png

    mac-tar-cache-exp.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/build-cache/cache-admin-hit-rate.png

    cache-admin-hit-rate.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

    """
        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 =
          client.newBuilder()
            .cache(cache)
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-cache-details.png

    github-actions-cache-details.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 226.8K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // (see 'go help build') to force rebuilding of packages that
    // depend on the updated C libraries.
    //
    // The go command also caches successful package test results.
    // See 'go help test' for details. Running 'go clean -testcache' removes
    // all cached test results (but not cached build results).
    //
    // The go command also caches values used in fuzzing with 'go test -fuzz',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    func (b *Builder) cacheObjdirFile(a *Action, c cache.Cache, name string) error {
    	f, err := os.Open(a.Objdir + name)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
    	return err
    }
    
    func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
    	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top