Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CacheKey (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top