Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,036 for cachez (0.12 sec)

  1. android/guava/src/com/google/common/base/Suppliers.java

              + ")";
        }
      }
    
      /**
       * Returns a supplier that caches the instance supplied by the delegate and removes the cached
       * value after the specified time has passed. Subsequent calls to {@code get()} return the cached
       * value if the expiration time has not passed. After the expiration time, a new value is
       * retrieved, cached, and returned. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    /home/paul/.sdkman/candidates/java/10.0.2-oracle/bin/java -cp /home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-compiler-embeddable/1.3.11/a8db6c14f8b8ed74aa11b8379f961587b639c571/kotlin-compiler-embeddable-1.3.11.jar:/home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-reflect/1.3.11/aae7b33412715e9ed441934c4ffaad1bb80e9d36/kotlin-reflect-1.3.11.jar:/home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.3.11/4cbc5922a5437601...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.BoolVar(&s.EnableWatchCache, "watch-cache", s.EnableWatchCache,
    		"Enable watch caching in the apiserver")
    
    	fs.IntVar(&s.DefaultWatchCacheSize, "default-watch-cache-size", s.DefaultWatchCacheSize,
    		"Default watch cache size. If zero, watch cache will be disabled for resources that do not have a default watch size set.")
    
    	fs.MarkDeprecated("default-watch-cache-size",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_manager.go

    		"pod",
    		"namespace"},
    )
    
    // Manager manages pod probing. It creates a probe "worker" for every container that specifies a
    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicySpec.groovy

    import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier
    import org.gradle.api.internal.artifacts.cache.ArtifactResolutionControl
    import org.gradle.api.internal.artifacts.cache.DependencyResolutionControl
    import org.gradle.api.internal.artifacts.cache.ModuleResolutionControl
    import org.gradle.api.internal.artifacts.configurations.MutationValidator
    import org.gradle.internal.Actions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/download.go

            Version  string // module version
            Error    string // error loading module
            Info     string // absolute path to cached .info file
            GoMod    string // absolute path to cached .mod file
            Zip      string // absolute path to cached .zip file
            Dir      string // absolute path to cached source root directory
            Sum      string // checksum for path, version (as in go.sum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. pilot/pkg/credentials/kube/secrets.go

    }
    
    // cachedAuthorization checks the authorization cache
    func (s *CredentialsController) insertCache(user string, response error) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	key := authorizationKey(user)
    	expDelta := cacheTTL
    	if response == nil {
    		// Cache success a bit longer, there is no need to quickly revoke access
    		expDelta *= 5
    	}
    	log.Debugf("cached authorization for user %s: %v", user, response)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.artifacts.component.BuildIdentifier
    import org.gradle.api.cache.Cleanup
    import org.gradle.api.cache.MarkingStrategy
    import org.gradle.api.file.FileCollection
    import org.gradle.api.flow.FlowScope
    import org.gradle.api.internal.BuildDefinition
    import org.gradle.api.internal.FeaturePreviews
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    }
    
    func TestCreateWithKeyExist(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestCreateWithKeyExist(ctx, t, cacher)
    }
    
    func TestGet(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestGet(ctx, t, cacher)
    }
    
    func TestUnconditionalDelete(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

             * be cached and cause other types to fail even though they may
             * not be the authority for the name. For example, if a WINS lookup
             * for FOO fails and caches unknownAddress for FOO, a subsequent
             * lookup for FOO using BCAST should not fail because of that
             * name cached from WINS.
             *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
Back to top