Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for tstones (0.16 sec)

  1. pilot/pkg/model/telemetry.go

    }
    
    // telemetryKey defines a key into the computedMetricsFilters cache.
    type telemetryKey struct {
    	// Root stores the Telemetry in the root namespace, if any
    	Root types.NamespacedName
    	// Namespace stores the Telemetry in the root namespace, if any
    	Namespace types.NamespacedName
    	// Workload stores the Telemetry in the root namespace, if any
    	Workload types.NamespacedName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. pkg/wasm/convert.go

    		TypedConfig: allowNetworkTypedConfig,
    	}
    	return anypb.New(ec)
    }
    
    // MaybeConvertWasmExtensionConfig converts any presence of module remote download to local file.
    // It downloads the Wasm module and stores the module locally in the file system.
    func MaybeConvertWasmExtensionConfig(resources []*anypb.Any, cache Cache) error {
    	var wg sync.WaitGroup
    
    	numResources := len(resources)
    	convertErrs := make([]error, numResources)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    	proxyAddresses       []string
    	ia                   *Agent
    
    	httpTapServer      *http.Server
    	tapMutex           sync.RWMutex
    	tapResponseChannel chan *discovery.DiscoveryResponse
    
    	// connected stores the active gRPC stream. The proxy will only have 1 connection at a time
    	connected                 *ProxyConnection
    	initialHealthRequest      *discovery.DiscoveryRequest
    	initialDeltaHealthRequest *discovery.DeltaDiscoveryRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. pkg/kube/kclient/client.go

    )
    
    type fullClient[T controllers.Object] struct {
    	writeClient[T]
    	Informer[T]
    }
    
    type writeClient[T controllers.Object] struct {
    	client kube.Client
    }
    
    // handlerRegistration stores a handler, with the registration so it can be de-registered
    type handlerRegistration struct {
    	registration cache.ResourceEventHandlerRegistration
    	// handler is the actual handler. Note this does NOT have the filtering applied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/controller.go

    	credentialsController credentials.MulticlusterController
    	secretHandler         model.EventHandler
    
    	// the cluster where the gateway-api controller runs
    	cluster cluster.ID
    	// domain stores the cluster domain, typically cluster.local
    	domain string
    
    	// state is our computed Istio resources. Access is guarded by stateMu. This is updated from Reconcile().
    	state   IstioResources
    	stateMu sync.RWMutex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/local/istiod_analyze.go

    )
    
    // IstiodAnalyzer handles local analysis of k8s event sources, both live and file-based
    type IstiodAnalyzer struct {
    	// internalStore stores synthetic configs for analysis (mesh config, etc)
    	internalStore model.ConfigStore
    	// stores contains all the (non file) config sources to analyze
    	stores []model.ConfigStoreController
    	// multiClusterStores contains all the multi-cluster config sources to analyze
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. pkg/kube/krt/collection.go

    func (o *handlers[O]) Get() []func(o []Event[O], initialSync bool) {
    	o.mu.RLock()
    	defer o.mu.RUnlock()
    	return slices.Clone(o.h)
    }
    
    // multiIndex stores input and output objects.
    // Each input and output can be looked up by its key.
    // Additionally, a mapping of input key -> output keys stores the transformation.
    type multiIndex[I, O any] struct {
    	outputs  map[Key[O]]O
    	inputs   map[Key[I]]I
    	mappings map[Key[I]]sets.Set[Key[O]]
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    	// ClusterAliases are alias names for cluster. When a proxy connects with a cluster ID
    	// and if it has a different alias we should use that a cluster ID for proxy.
    	ClusterAliases map[cluster.ID]cluster.ID
    
    	// pushVersion stores the numeric push version. This should be accessed via NextVersion()
    	pushVersion atomic.Uint64
    
    	// DiscoveryStartTime is the time since the binary started
    	DiscoveryStartTime time.Time
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pilot/pkg/model/typed_xds_cache.go

    	key              K
    	dependentConfigs []ConfigHash
    }
    
    type lruCache[K comparable] struct {
    	enableAssertions bool
    	store            simplelru.LRUCache[K, cacheValue]
    	// token stores the latest token of the store, used to prevent stale data overwrite.
    	// It is refreshed when Clear or ClearAll are called
    	token       CacheToken
    	mu          sync.RWMutex
    	configIndex map[ConfigHash]sets.Set[K]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	// are not part of an Istio identity and thus are not verified.
    	VerifiedIdentity *spiffe.Identity
    
    	// IPMode of proxy.
    	ipMode IPMode
    
    	// GlobalUnicastIP stores the global unicast IP if available, otherwise nil
    	GlobalUnicastIP string
    
    	// XdsResourceGenerator is used to generate resources for the node, based on the PushContext.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top