Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 209 for index (0.31 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.17.template.gen.yaml

            {{- end }}
            service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | trunc 63 | trimSuffix "-" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/kclient/index_test.go

    	assert.EventuallyEqual(t, func() int {
    		index.mu.RLock()
    		defer index.mu.RUnlock()
    		return len(index.objects)
    	}, 0)
    }
    
    func TestIndexDelegate(t *testing.T) {
    	c := kube.NewFakeClient()
    	pods := New[*corev1.Pod](c)
    	c.RunAndWait(test.NewStop(t))
    	var index *Index[string, *corev1.Pod]
    	adds := atomic.NewInt32(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	ByAddress        *krt.Index[model.WorkloadInfo, networkAddress]
    	ByServiceKey     *krt.Index[model.WorkloadInfo, string]
    	ByOwningWaypoint *krt.Index[model.WorkloadInfo, networkAddress]
    }
    
    type waypointsCollection struct {
    	krt.Collection[Waypoint]
    }
    
    type servicesCollection struct {
    	krt.Collection[model.ServiceInfo]
    	ByAddress        *krt.Index[model.ServiceInfo, networkAddress]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                {{- end }}
                service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	}
    	sort.Ints(priorities)
    	// 2.2 adjust LocalityLbEndpoints priority
    	// if the index and value of priorities array is not equal.
    	for i, priority := range priorities {
    		if i != priority {
    			// the LocalityLbEndpoints index in ClusterLoadAssignment.Endpoints
    			for _, index := range priorityMap[priority] {
    				loadAssignment.Endpoints[index].Priority = uint32(i)
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/assets/templates/collection/list.html

            <table>
                <thead>
                <tr>
                    <th>Index</th>
                    <th>Item</th>
                </tr>
                </thead>
    
                <tbody>
                     {{ range $index, $key := $context.Keys }}
                    <tr>
                        <td>{{$index}}</td>
                        <td><a href="{{$context.Collection}}/{{$key}}">{{$key}}</a></td>
                    </tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 715 bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads_test.go

    			vsIndexes: []struct {
    				index int
    				hosts []string
    				dest  string
    			}{{index: 4}},
    			expectedUpdates: []string{v3.ClusterType},
    		},
    		{
    			desc: "Add delegation virtual service for scoped service with transitively scoped dest svc",
    			ev:   model.EventAdd,
    			delegatevsIndexes: []struct {
    				index int
    				hosts []string
    				dest  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{- end }}
        service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | trunc 63 | trimSuffix "-" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. pkg/config/analysis/incluster/controller.go

    		if err != nil {
    			log.Errorf("In-cluster analysis has failed: %s", err)
    			return
    		}
    		// reorganize messages to map
    		index := map[status.Resource]diag.Messages{}
    		for _, m := range res.Messages {
    			key := status.ResourceFromMetadata(m.Resource.Metadata)
    			index[key] = append(index[key], m)
    		}
    		// if we previously had a message that has been removed, ensure it is removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      annotations: {
        istio.io/rev: {{ .Revision | default "default" | quote }},
        {{- if eq (len $containers) 1 }}
        kubectl.kubernetes.io/default-logs-container: "{{ index $containers 0 }}",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top