Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for tstones (0.12 sec)

  1. 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)
  2. 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)
  3. tests/integration/security/sds_ingress/util/util.go

    		metav1.DeleteOptions{GracePeriodSeconds: &immediate})
    	if err != nil && !errors.IsNotFound(err) {
    		t.Fatalf("Failed to delete secret (error: %s)", err)
    	}
    }
    
    // createSecret creates a kubernetes secret which stores private key, server certificate for TLS ingress gateway.
    // For mTLS ingress gateway, createSecret adds ca certificate into the secret object.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kube/krt/README.md

    Basically, Transformations must be stateless and idempotent.
    * Any querying of other `Collection`s _must_ be done through `krt.Fetch`.
    * Querying other data stores that may change is not permitted.
    * Querying external state (e.g. making HTTP calls) is not permitted.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/dns/client/dns.go

    		} else {
    			out = append(out, ipAnswers...)
    		}
    	}
    	return out, hostFound
    }
    
    // This function stores the list of hostnames along with the precomputed DNS response for that hostname.
    // Most hostnames have a DNS response containing the A/AAAA records. In addition, this function stores a
    // variant of the host+ the first search domain in resolv.conf as the first query
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. 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)
  10. tools/bug-report/pkg/bugreport/bugreport.go

    		return nil
    	}
    	if strings.Contains(err.Error(), "executable file not found in $PATH") {
    		return nil
    	}
    	return err
    }
    
    // getProxyLogs fetches proxy logs for the given namespace/pod/container and stores the output in global structs.
    // Runs if a goroutine, with errors reported through gErrors.
    // TODO(stewartbutler): output the logs to a more robust/complete structure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top