Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unlock2 (0.07 sec)

  1. pilot/pkg/model/endpointshards.go

    func (e *EndpointIndex) DeleteServiceShard(shard ShardKey, serviceName, namespace string, preserveKeys bool) {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	e.deleteServiceInner(shard, serviceName, namespace, preserveKeys)
    }
    
    func (e *EndpointIndex) DeleteShard(shardKey ShardKey) {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	for svc, shardsByNamespace := range e.shardsBySvc {
    		for ns := range shardsByNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    	return out
    }
    
    func (cl *Client) allKinds() map[config.GroupVersionKind]kclient.Untyped {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	return maps.Clone(cl.kinds)
    }
    
    func (cl *Client) kind(r config.GroupVersionKind) (kclient.Untyped, bool) {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	ch, ok := cl.kinds[r]
    	return ch, ok
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// because Istiod is restarted or Envoy disconnects and reconnects.
    	// We should always respond with the current resource names.
    	if previousInfo == nil {
    		con.proxy.Lock()
    		defer con.proxy.Unlock()
    
    		if len(request.InitialResourceVersions) > 0 {
    			deltaLog.Debugf("ADS:%s: RECONNECT %s %s resources:%v", stype, con.ID(), request.ResponseNonce, len(request.InitialResourceVersions))
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top