Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for keyId (0.04 sec)

  1. pilot/pkg/autoregistration/connections.go

    // when a WorkloadGroup is deleted, we can force disconnects
    // when OnDisconnect occurs, we only trigger cleanup when there are no more connections for that proxy
    type adsConnections struct {
    	sync.Mutex
    
    	// keyed by proxy id, then connection id
    	byProxy map[proxyKey]map[string]connection
    }
    
    func newAdsConnections() *adsConnections {
    	return &adsConnections{byProxy: map[proxyKey]map[string]connection{}}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

        SortedSet<String> getNames();
    
        @Override
        @Internal
        List<Rule> getRules();
    
        @Override
        @Internal
        boolean isEmpty();
    
        /**
         * Returns the enabled reports, keyed by report name.
         *
         * @since 4.7
         */
        @Nested
        Map<String, T> getEnabledReports();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/index.go

    func NewNamespaceIndex[I Namespacer](c Collection[I]) *Index[I, string] {
    	return NewIndex(c, func(o I) []string {
    		return []string{o.GetNamespace()}
    	})
    }
    
    // NewIndex creates a simple index, keyed by key K, over an informer for O. This is similar to
    // NewInformer.AddIndex, but is easier to use and can be added after an informer has already started.
    func NewIndex[I any, K comparable](
    	c Collection[I],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/model.go

    	GRPCRoute      []config.Config
    	TCPRoute       []config.Config
    	TLSRoute       []config.Config
    	ReferenceGrant []config.Config
    	ServiceEntry   []config.Config
    	// Namespaces stores all namespace in the cluster, keyed by name
    	Namespaces map[string]*corev1.Namespace
    	// Credentials stores all credentials in the cluster
    	Credentials credentials.Controller
    
    	// Domain for the cluster. Typically, cluster.local
    	Domain  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/filewatcher/filewatcher.go

    	Close() error
    	Events(path string) chan fsnotify.Event
    	Errors(path string) chan error
    }
    
    type fileWatcher struct {
    	mu sync.RWMutex
    
    	// The watcher maintain a map of workers,
    	// keyed by watched dir (parent dir of watched files).
    	workers map[string]*workerState
    
    	funcs *patchTable
    }
    
    type workerState struct {
    	worker *worker
    	count  int
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/clusterstore.go

    import (
    	"sync"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // ClusterStore is a collection of clusters
    type ClusterStore struct {
    	sync.RWMutex
    	// keyed by secret key(ns/name)->clusterID
    	remoteClusters map[string]map[cluster.ID]*Cluster
    	clusters       sets.String
    }
    
    // newClustersStore initializes data struct to store clusters information
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/reason_cache.go

    	"github.com/golang/groupcache/lru"
    	"k8s.io/apimachinery/pkg/types"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // ReasonCache stores the failure reason of the latest container start
    // in a string, keyed by <pod_UID>_<container_name>. The goal is to
    // propagate this reason to the container status. This endeavor is
    // "best-effort" for two reasons:
    //  1. The cache is not persisted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/cycle_state.go

    // It is the recommended pattern used in all in-tree plugins - plugin-specific state is written once in PreFilter/PreScore and afterward read many times in Filter/Score.
    type CycleState struct {
    	// storage is keyed with StateKey, and valued with StateData.
    	storage sync.Map
    	// if recordPluginMetrics is true, metrics.PluginExecutionDuration will be recorded for this cycle.
    	recordPluginMetrics bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/timed_workers.go

    	if w != nil {
    		w.Timer.Stop()
    	}
    }
    
    // TimedWorkerQueue keeps a set of TimedWorkers that are still wait for execution.
    type TimedWorkerQueue struct {
    	sync.Mutex
    	// map of workers keyed by string returned by 'KeyFromWorkArgs' from the given worker.
    	workers  map[string]*TimedWorker
    	workFunc func(ctx context.Context, fireAt time.Time, args *WorkArgs) error
    	clock    clock.WithDelayedExecution
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    )
    
    const (
    	claimsVarName = "claims"
    	userVarName   = "user"
    )
    
    // compiler implements the Compiler interface.
    type compiler struct {
    	// varEnvs is a map of CEL environments, keyed by the name of the CEL variable.
    	// The CEL variable is available to the expression.
    	// We have 2 environments, one for claims and one for user.
    	varEnvs map[string]*environment.EnvSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top