Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for keyId (0.08 sec)

  1. pilot/pkg/model/context.go

    	CredentialsController credentials.MulticlusterController
    
    	GatewayAPIController GatewayController
    
    	// EndpointShards for a service. This is a global (per-server) list, built from
    	// incremental updates. This is keyed by service and namespace
    	EndpointIndex *EndpointIndex
    
    	// Cache for XDS resources.
    	Cache XdsCache
    }
    
    func (e *Environment) Mesh() *meshconfig.MeshConfig {
    	if e != nil && e.Watcher != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. src/net/http/cookiejar/jar.go

    }
    
    // Jar implements the http.CookieJar interface from the net/http package.
    type Jar struct {
    	psList PublicSuffixList
    
    	// mu locks the remaining fields.
    	mu sync.Mutex
    
    	// entries is a set of entries, keyed by their eTLD+1 and subkeyed by
    	// their name/domain/path.
    	entries map[string]map[string]entry
    
    	// nextSeqNum is the next sequence number assigned to a new cookie
    	// created SetCookies.
    	nextSeqNum uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    			res.Shards[k] = append(res.Shards[k], ep.DeepCopy())
    		}
    	}
    	return res
    }
    
    // EndpointIndex is a mutex protected index of endpoint shards
    type EndpointIndex struct {
    	mu sync.RWMutex
    	// keyed by svc then ns
    	shardsBySvc map[string]map[string]*EndpointShards
    	// We'll need to clear the cache in-sync with endpoint shards modifications.
    	cache XdsCache
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	namespaceClient corev1client.NamespacesGetter
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors.
    	// we only ever place one entry in here, but it is keyed as usual: namespace/name
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// kubeSystemConfigMapInformer is tracked so that we can start these on Run
    	kubeSystemConfigMapInformer cache.SharedIndexInformer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    its objects, though it may import facts from any package or object that
    is an import dependency of the current package.
    
    Conceptually, ExportObjectFact(obj, fact) inserts fact into a hidden map keyed by
    the pair (obj, TypeOf(fact)), and the ImportObjectFact function
    retrieves the entry from this map and copies its value into the variable
    pointed to by fact. This scheme assumes that the concrete type of fact
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

        CZ--"HBONE (actual)"-->SZ
        SZ--Plain-->Server
    ```
    
    ### Pooling
    
    User connections can be multiplexed over shared HBONE connections.
    This is done through standard HTTP/2 pooling.
    The pooling is keyed off the `{source identity, destination identity, destination ip}`.
    
    ### Headers
    
    Ztunnel uses the following well-known headers in HBONE:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	// This contains all virtual services whose exportTo is "*", keyed by gateway
    	publicByGateway map[string][]config.Config
    	// root vs namespace/name ->delegate vs virtualservice gvk/namespace/name
    	delegates map[ConfigKey][]ConfigKey
    
    	// This contains destination hosts of virtual services, keyed by gateway's namespace/name,
    	// only used when PILOT_FILTER_GATEWAY_CLUSTER_CONFIG is enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    		pkgCache:    make(map[uint64]*types.Package),
    
    		declData: declData,
    		pkgIndex: make(map[*types.Package]map[string]uint64),
    		typCache: make(map[uint64]types.Type),
    		// Separate map for typeparams, keyed by their package and unique
    		// name (name with subscript).
    		tparamIndex: make(map[ident]*types.TypeParam),
    
    		fake: fakeFileSet{
    			fset:  fset,
    			files: make(map[string]*fileInfo),
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. pkg/kube/krt/collection.go

    	mu              sync.Mutex
    	collectionState multiIndex[I, O]
    	// collectionDependencies specifies the set of collections we depend on from within the transformation functions (via Fetch).
    	// These are keyed by the internal uid() function on collections.
    	// Note this does not include `parent`, which is the *primary* dependency declared outside of transformation functions.
    	collectionDependencies sets.Set[collectionUID]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa.go

    // produces randomized signatures.
    func mixedCSPRNG(rand io.Reader, priv *PrivateKey, hash []byte) (io.Reader, error) {
    	// This implementation derives the nonce from an AES-CTR CSPRNG keyed by:
    	//
    	//    SHA2-512(priv.D || entropy || hash)[:32]
    	//
    	// The CSPRNG key is indifferentiable from a random oracle as shown in
    	// [Coron], the AES-CTR stream is indifferentiable from a random oracle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top