Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 206 for index (0.05 sec)

  1. prow/config/calico.yaml

                    description: Array of allocations in-use within this block. nil entries
                      mean the allocation is free. For non-nil entries at index i, the
                      index is the ordinal of the allocation within this block and the
                      value is the index of the associated attributes in the Attributes
                      array.
                    items:
                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// waypoint. Must be one of "all", "service", "workload".
    	TrafficType string
    
    	// ServiceAccounts from instances of the waypoint.
    	// This only handles Pods. If we wish to support non-pod waypoints, we'll
    	// want to index ServiceEntry/WorkloadEntry or possibly allow specifying
    	// the ServiceAccounts directly on a Gateway resource.
    	ServiceAccounts []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    func expectServiceEndpoints(t *testing.T, fx *xdsfake.Updater, svc *model.Service, port int, expected []EndpointResponse) {
    	t.Helper()
    	expectServiceEndpointsFromIndex(t, fx.Delegate.(*model.EndpointIndexUpdater).Index, svc, port, expected)
    }
    
    func setPodReady(pod *v1.Pod) {
    	pod.Status.Conditions = []v1.PodCondition{
    		{
    			Type:               v1.PodReady,
    			Status:             v1.ConditionTrue,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/workloadapi/security"
    )
    
    const (
    	staticStrictPolicyName = "istio_converted_static_strict" // use '_' character since those are illegal in k8s names
    )
    
    func (a *index) Policies(requested sets.Set[model.ConfigKey]) []model.WorkloadAuthorization {
    	// TODO: use many Gets instead of List?
    	cfgs := a.authorizationPolicies.List()
    	l := len(cfgs)
    	if len(requested) > 0 {
    		l = len(requested)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

     this.filter(function(){for(var a=0;a<c;a++)if(r.contains(this,b[a]))return!0})},closest:function(a,b){var c,d=0,e=this.length,f=[],g="string"!=typeof a&&r(a);if(!A.test(a))for(;d<e;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?th...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    	h, f := cl.kind(typ)
    	if !f {
    		cl.logger.Warnf("unknown type: %s", typ)
    		return nil
    	}
    	obj := h.Get(name, namespace)
    	if obj == nil {
    		cl.logger.Debugf("couldn't find %s/%s in informer index", namespace, name)
    		return nil
    	}
    
    	cfg := TranslateObject(obj, typ, cl.domainSuffix)
    	return &cfg
    }
    
    // Create implements store interface
    func (cl *Client) Create(cfg config.Config) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // - message: The validation failure message string
      // - policy: The resource name of the ValidatingAdmissionPolicy
      // - binding: The resource name of the ValidatingAdmissionPolicyBinding
      // - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy
      // - validationActions: The enforcement actions enacted for the validation failure
      // Example audit annotation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/network.go

    }
    
    // update calls should with the lock held
    func (gws *NetworkGateways) update(gatewaySet NetworkGatewaySet) bool {
    	if gatewaySet.Equals(sets.New(gws.allGateways()...)) {
    		return false
    	}
    
    	// index by network or network+cluster for quick lookup
    	byNetwork := make(map[network.ID][]NetworkGateway)
    	byNetworkAndCluster := make(map[networkAndCluster][]NetworkGateway)
    	for gw := range gatewaySet {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    	serviceRegistry map[host.Name]*model.Service,
    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) ([]string, []*model.Service) {
    	// TODO: A further optimization would be to completely rely on the index and not do the loop below
    	// However, that requires assuming that serviceRegistry never got filtered after the
    	// egressListener was created.
    	rule := virtualService.Spec.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/file/store.go

    	if len(yamlNode.Content) == 0 {
    		return
    	}
    
    	nodeContent := yamlNode.Content
    	// Iterate content by a step of 2, because in the content array the value is in the key's next index position
    	for i := 0; i < len(nodeContent)-1; i += 2 {
    		// Two condition, i + 1 positions have no content, which means they have the format like "key: value", then build the map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top