Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 206 for index (0.05 sec)

  1. pkg/wasm/convert_test.go

    					t.Errorf("wasm config conversion output %v failed to unmarshal", output)
    					continue
    				}
    				if !proto.Equal(ec, c.wantOutput[i]) {
    					t.Errorf("wasm config conversion output index %d got %v want %v", i, ec, c.wantOutput[i])
    				}
    			}
    			if c.wantErr && gotErr == nil {
    				t.Error("wasm config conversion fails to raise an error")
    			} else if !c.wantErr && gotErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache.go

    	l.store.Add(k, toWrite)
    	l.token = token
    	l.updateConfigIndex(k, dependentConfigs)
    
    	// we have to make sure we evict old entries with the same key
    	// to prevent leaking in the index maps
    	if f {
    		l.evictQueue = append(l.evictQueue, evictKeyConfigs[K]{k, cur.dependentConfigs})
    	}
    	size(l.store.Len())
    }
    
    type cacheValue struct {
    	value            *discovery.Resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    				ExportTo:  sets.New(visibility.Instance("namespace")),
    			},
    		},
    	}
    
    	for _, svc := range services {
    		if index.shardsBySvc[string(svc.Hostname)] == nil {
    			index.shardsBySvc[string(svc.Hostname)] = map[string]*EndpointShards{}
    		}
    		index.shardsBySvc[string(svc.Hostname)][svc.Attributes.Namespace] = &EndpointShards{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry.go

    		if strings.EqualFold(m, p.Name) {
    			return p
    		}
    	}
    	return nil
    }
    
    func (t *Telemetries) Debug(proxy *Proxy) any {
    	// TODO we could use service targets + ambient index to include service-attached here
    	at := t.applicableTelemetries(proxy, nil)
    	return at
    }
    
    var allMetrics = func() []string {
    	r := make([]string, 0, len(tpb.MetricSelector_IstioMetric_value))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    n=this.toString().indexOf(e.word);n!==-1&&(t=this.positionInside(n),r=this.positionInside(n+e.word.length))}else e.start?t={line:e.start.line,column:e.start.column}:e.index&&(t=this.positionInside(e.index)),e.end?r={line:e.end.line,column:e.end.column}:e.endIndex?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<t.line||r.line===t.line&&r.column<=t.column)&&(r={line:t.line,column:t.column+1}),{start:t,end:r}}getProxyProcessor(){return{set(e,t,r){return e[t...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	var validationErrors util.Errors
    	for i := 0; i < e.Len(); i++ {
    		validationErrors = append(validationErrors, ValidateSubTypes(e.Index(i), failOnMissingValidation, values, iopls)...)
    	}
    
    	return validationErrors
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/debug.go

    	if enableProfiling {
    		runtime.SetMutexProfileFraction(features.MutexProfileFraction)
    		runtime.SetBlockProfileRate(features.MutexProfileFraction)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/", "Displays pprof index", pprof.Index)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/cmdline", "The command line invocation of the current program", pprof.Cmdline)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/profile", "CPU profile", pprof.Profile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate.go

    func (t *Translator) OverlayK8sSettings(yml string, iop *v1alpha1.IstioOperatorSpec, componentName name.ComponentName,
    	resourceName string, index int) (string, error,
    ) {
    	// om is a map of kind:name string to Object ptr.
    	// This is lazy loaded to avoid parsing when there are no overlays
    	var om map[string]*object.K8sObject
    	var objects object.K8sObjects
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// it requires delete all instances and then update new ones.
    	mutex sync.RWMutex
    
    	serviceInstances serviceInstancesStore
    	// NOTE: historically, one index for both WorkloadEntry(s) and Pod(s);
    	//       beware of naming collisions
    	workloadInstances workloadinstances.Index
    	services          serviceStore
    
    	// To make sure the eds update run in serial to prevent stale ones can override new ones
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// Only nodes with ExternalIP addresses are included in this map !
    	nodeInfoMap map[string]kubernetesNode
    	// index over workload instances from workload entries
    	workloadInstancesIndex workloadinstances.Index
    
    	*networkManager
    
    	ambientIndex
    
    	// initialSyncTimedout is set to true after performing an initial processing timed out.
    	initialSyncTimedout *atomic.Bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top