Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for CacheKey (0.13 sec)

  1. pkg/scheduler/util/assumecache/assume_cache.go

    	if err != nil {
    		// This could be expected if object got deleted
    		c.logger.V(5).Info("Restore object", "description", c.description, "cacheKey", objName, "err", err)
    	} else {
    		objInfo.latestObj = objInfo.apiObj
    		c.logger.V(4).Info("Restored object", "description", c.description, "cacheKey", objName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    recordArtifacts = pluginArtifactsCache.put(cacheKey, artifacts);
                } catch (PluginResolutionException e) {
                    pluginArtifactsCache.put(cacheKey, e);
                    pluginArtifactsCache.register(project, cacheKey, recordArtifacts);
                    throw new PluginManagerException(plugin, e.getMessage(), e);
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

            VersionResult result = new VersionResult(request);
    
            Key cacheKey = null;
            RepositoryCache cache = session.getCache();
            if (cache != null && !ConfigUtils.getBoolean(session, false, "aether.versionResolver.noCache")) {
                cacheKey = new Key(session, request);
    
                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    type State struct {
    	Transformer value.Transformer
    
    	EncryptedObject kmstypes.EncryptedObject
    
    	UID string
    
    	ExpirationTimestamp time.Time
    
    	// CacheKey is the key used to cache the DEK/seed in envelopeTransformer.cache.
    	CacheKey []byte
    }
    
    func (s *State) ValidateEncryptCapability() error {
    	if now := NowFunc(); now.After(s.ExpirationTimestamp) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            VersionResult result = new VersionResult(request);
    
            Key cacheKey = null;
            RepositoryCache cache = session.getCache();
            if (cache != null && !ConfigUtils.getBoolean(session, false, "aether.versionResolver.noCache")) {
                cacheKey = new Key(session, request);
    
                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/imagepolicy/admission.go

    	}
    	return nil
    }
    
    func (a *Plugin) admitPod(ctx context.Context, pod *api.Pod, attributes admission.Attributes, review *v1alpha1.ImageReview) error {
    	cacheKey, err := json.Marshal(review.Spec)
    	if err != nil {
    		return err
    	}
    	if entry, ok := a.responseCache.Get(string(cacheKey)); ok {
    		review.Status = entry.(v1alpha1.ImageReviewStatus)
    	} else {
    		result := a.webhook.WithExponentialBackoff(ctx, func() rest.Result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin.go

    	}
    
    	var cacheKey string
    	switch cacheKeyType := response.CacheKeyType; cacheKeyType {
    	case credentialproviderapi.ImagePluginCacheKeyType:
    		cacheKey = image
    	case credentialproviderapi.RegistryPluginCacheKeyType:
    		registry := parseRegistry(image)
    		cacheKey = registry
    	case credentialproviderapi.GlobalPluginCacheKeyType:
    		cacheKey = globalCacheKey
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    			// does require servers to abort on invalid binders, so we need to
    			// delete tickets to recover from a corrupted PSK.
    			if err != nil {
    				if cacheKey := c.clientSessionCacheKey(); cacheKey != "" {
    					c.config.ClientSessionCache.Put(cacheKey, nil)
    				}
    			}
    		}()
    	}
    
    	if ech != nil {
    		// Split hello into inner and outer
    		ech.innerHello = hello.clone()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

                        try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
                            HashCode cacheKey = ((BuildCacheKeyInternal) key).getHashCodeInternal();
                            OriginWriter originWriter = originMetadataFactory.createWriter(entity.getIdentity(), entity.getType(), cacheKey, executionTime);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    internal
    class ConfigurationCacheProblems(
    
        private
        val startParameter: ConfigurationCacheStartParameter,
    
        private
        val report: ConfigurationCacheReport,
    
        private
        val cacheKey: ConfigurationCacheKey,
    
        private
        val listenerManager: ListenerManager,
    
        private
        val problemsService: InternalProblems,
    
        private
        val failureFactory: FailureFactory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top