Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for CacheKey (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		transformer, encObject, cacheKey, errGen := GenerateTransformer(ctx, string(uuid.NewUUID()), envelopeService, useSeed)
    		if errGen != nil {
    			return State{}, errGen
    		}
    		return State{
    			Transformer:         transformer,
    			EncryptedObject:     *encObject,
    			UID:                 "panda",
    			ExpirationTimestamp: clock.Now().Add(time.Hour),
    			CacheKey:            cacheKey,
    		}, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		h.state.Store(&envelopekmsv2.State{
    			Transformer:         transformer,
    			EncryptedObject:     *encObject,
    			UID:                 uid,
    			ExpirationTimestamp: expirationTimestamp,
    			CacheKey:            cacheKey,
    		})
    
    		// it should be logically impossible for the new state to be invalid but check just in case
    		_, errGen = h.getCurrentState()
    		if errGen == nil {
    			klogV6 := klog.V(6)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_tls13.go

    	if c.quic != nil && c.quic.enableStoreSessionEvent {
    		c.quicStoreSession(session)
    		return nil
    	}
    	cs := &ClientSessionState{session: session}
    	if cacheKey := c.clientSessionCacheKey(); cacheKey != "" {
    		c.config.ClientSessionCache.Put(cacheKey, cs)
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. fastapi/dependencies/utils.py

            sub_dependant.security_requirements.append(security_requirement)
        return sub_dependant
    
    
    CacheKey = Tuple[Optional[Callable[..., Any]], Tuple[str, ...]]
    
    
    def get_flat_dependant(
        dependant: Dependant,
        *,
        skip_repeats: bool = False,
        visited: Optional[List[CacheKey]] = None,
    ) -> Dependant:
        if visited is None:
            visited = []
        visited.append(dependant.cache_key)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    			if e, ok := alt.(erringRoundTripper); ok {
    				// pconn.conn was closed by next (http2configureTransports.upgradeFn).
    				return nil, e.RoundTripErr()
    			}
    			return &persistConn{t: t, cacheKey: pconn.cacheKey, alt: alt}, nil
    		}
    	}
    
    	pconn.br = bufio.NewReaderSize(pconn, t.readBufferSize())
    	pconn.bw = bufio.NewWriterSize(persistConnWriter{pconn}, t.writeBufferSize())
    
    	go pconn.readLoop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assert listCacheFiles().any { it.name == cacheOperations.getCacheKeyForTask(taskName) }
        }
    
        private void assertTaskOutputNotCached(String taskName) {
            def cacheKey = cacheOperations.getCacheKeyForTaskOrNull(taskName)
            assert cacheKey == null
        }
    
        @Override
        AbstractIntegrationSpec withBuildCache() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    		dc.queue.Forget(key)
    		return
    	}
    	ns, name, keyErr := cache.SplitMetaNamespaceKey(key)
    	if keyErr != nil {
    		logger.Error(err, "Failed to split meta namespace cache key", "cacheKey", key)
    	}
    
    	if dc.queue.NumRequeues(key) < maxRetries {
    		logger.V(2).Info("Error syncing deployment", "deployment", klog.KRef(ns, name), "err", err)
    		dc.queue.AddRateLimited(key)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/reflect/type.go

    }
    
    // The lookupCache caches ArrayOf, ChanOf, MapOf and SliceOf lookups.
    var lookupCache sync.Map // map[cacheKey]*rtype
    
    // A cacheKey is the key for use in the lookupCache.
    // Four values describe any of the types we are looking for:
    // type kind, one or two subtypes, and an extra integer.
    type cacheKey struct {
    	kind  Kind
    	t1    *abi.Type
    	t2    *abi.Type
    	extra uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	t.Helper()
    
    	transformer, encObject, cacheKey, err := envelopekmsv2.GenerateTransformer(testContext(t), "", &testKMSv2EnvelopeService{keyID: keyID}, useSeed)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return envelopekmsv2.State{
    		Transformer:         transformer,
    		EncryptedObject:     *encObject,
    		ExpirationTimestamp: exp,
    		CacheKey:            cacheKey,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    var e=t.target;return[this.$el].concat(yt(e,this.$el))},watch:function(){this.observe()}},offsetTop:function(t){return wi(t.offsetTop,"height")},offsetLeft:function(t){return wi(t.offsetLeft,"width")}},connected:function(){tr[this.cacheKey]?Yn(this.$el,tr[this.cacheKey]||this.dataSrc,this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&Yn(this.$el,function(t,e,i){var n;i&&(n=rt.ratio({width:t,height:e},"width",wi(Xn(i))),t=n.width,e=n.height);return'data:image/svg+xml;utf8,<svg xmlns...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top