Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 578 for Marche (0.05 sec)

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

    1. */
    2.  
    3. package com.google.common.cache;
    4.  
    5. import static com.google.common.cache.CacheBuilder.NULL_TICKER;
    6. import static com.google.common.cache.LocalCache.DISCARDING_QUEUE;
    7. import static com.google.common.cache.LocalCache.DRAIN_THRESHOLD;
    8. import static com.google.common.cache.LocalCache.nullEntry;
    9. import static com.google.common.cache.LocalCache.unset;
    10. import static com.google.common.cache.TestingCacheLoaders.identityLoader;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    1. /// note
    2.  
    3. The `--no-cache-dir` is only related to `pip`, it has nothing to do with Docker or containers.
    4.  
    5. ///
    6.  
    7. The `--upgrade` option tells `pip` to upgrade the packages if they are already installed.
    8.  
    9. Because the previous step copying the file could be detected by the **Docker cache**, this step will also **use the Docker cache** when available.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Sep 18 16:09:57 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

    1. }
    2.  
    3. @Test
    4. fun cache() {
    5. val cache = Cache(File("/cache/"), Integer.MAX_VALUE.toLong())
    6. cache.initialize()
    7. cache.delete()
    8. cache.evictAll()
    9. val urls: MutableIterator<String> = cache.urls()
    10. val writeAbortCount: Int = cache.writeAbortCount()
    11. val writeSuccessCount: Int = cache.writeSuccessCount()
    12. val size: Long = cache.size()
    13. val maxSize: Long = cache.maxSize()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. ci/official/envs/disk_cache

    1. # Sourcing this enables local disk cache
    2. if [[ $(uname -s) == "Darwin" ]]; then
    3. echo "Please note that using disk cache on macOS is not recommended because the"
    4. echo "cache can end up being pretty big and make the build process inefficient."
    5. fi
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1023 bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java

    1. import org.apache.maven.building.Source;
    2.  
    3. /**
    4. * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
    5. * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
    6. * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. cmd/data-usage.go

    1. ctx, done := context.WithTimeout(ctx, 2*time.Second)
    2. ok := cache.load(ctx, er, bucket+slashSeparator+dataUsageCacheName) == nil
    3. done()
    4. if ok {
    5. root := cache.find(bucket)
    6. if root == nil {
    7. // We dont have usage information for this bucket in this
    8. // set, go to the next set
    9. continue
    10. }
    11.  
    12. for id, usageInfo := range cache.flattenChildrens(*root) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SidResolver.java

    1. * @internal
    2. */
    3. public interface SidResolver {
    4.  
    5. /**
    6. * Resolve an array of SIDs using a cache and at most one MSRPC request.
    7. * <p>
    8. * This method will attempt
    9. * to resolve SIDs using a cache and cache the results of any SIDs that
    10. * required resolving with the authority. SID cache entries are currently not
    11. * expired because under normal circumstances SID information never changes.
    12. *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

    1. internal fun addHeaderLenient(
    2. builder: Headers.Builder,
    3. name: String,
    4. value: String,
    5. ): Headers.Builder = builder.addLenient(name, value)
    6.  
    7. internal fun cacheGet(
    8. cache: Cache,
    9. request: Request,
    10. ): Response? = cache.get(request)
    11.  
    12. internal fun applyConnectionSpec(
    13. connectionSpec: ConnectionSpec,
    14. sslSocket: SSLSocket,
    15. isFallback: Boolean,
    16. ) = connectionSpec.apply(sslSocket, isFallback)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

    1. // Ignore
    2. continue
    3. }
    4.  
    5. if (shouldDelete(cacheVersion)) {
    6. logger.lifecycle("Removing old cache directory : $cacheDir")
    7. delete {
    8. delete(cacheDir)
    9. }
    10. }
    11. }
    12. }
    13. }
    14.  
    15.  
    16. fun FileSystemOperations.removeCachedScripts(cachesDir: File) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. .github/workflows/test.yml

    1. uses: actions/setup-python@v5
    2. with:
    3. python-version: "3.11"
    4. - name: Setup uv
    5. uses: astral-sh/setup-uv@v3
    6. with:
    7. version: "0.4.15"
    8. enable-cache: true
    9. cache-dependency-glob: |
    10. requirements**.txt
    11. pyproject.toml
    12. - name: Install Dependencies
    13. run: uv pip install -r requirements-tests.txt
    14. - name: Install Pydantic v2
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 12:27:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top