Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for CacheKey (0.8 sec)

  1. src/cmd/go/internal/work/action.go

    	Cmd     []string      // `json:",omitempty"`
    	CmdReal time.Duration `json:",omitempty"`
    	CmdUser time.Duration `json:",omitempty"`
    	CmdSys  time.Duration `json:",omitempty"`
    }
    
    // cacheKey is the key for the action cache.
    type cacheKey struct {
    	mode string
    	p    *load.Package
    }
    
    func actionGraphJSON(a *Action) string {
    	var workq []*Action
    	var inWorkq = make(map[*Action]int)
    
    	add := func(a *Action) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K 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. 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)
  5. 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)
  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. 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)
  8. 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)
  9. src/net/http/transport_test.go

    	if e, g := 1, len(keys); e != g {
    		t.Fatalf("after first response, expected %d idle conn cache keys; got %d", e, g)
    	}
    	addr := ts.Listener.Addr().String()
    	cacheKey := "|http|" + addr
    	if keys[0] != cacheKey {
    		t.Fatalf("Expected idle cache key %q; got %q", cacheKey, keys[0])
    	}
    	if e, g := 1, tr.IdleConnCountForTesting("http", addr); e != g {
    		t.Errorf("after first response, expected %d idle conns; got %d", e, g)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.artifacts.verification.signatures.CrossBuildSignatureVerificationService$CacheKey> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CrossBuildSignatureVerificationService.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top