Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for index (0.06 sec)

  1. pkg/kube/inject/testdata/inputs/default.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/test/framework/components/echo/kube/templates/deployment.yaml

    {{- end}}
    {{- if ne $.ImagePullSecretName "" }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
    {{- end }}
          containers:
    {{- if and
      (ne (index $subset.Annotations "sidecar.istio.io/inject") "false")
      (ne (index $subset.Annotations "inject.istio.io/templates") "grpc")
      ($.OverlayIstioProxy)
    }}
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ $.ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/lib-grid.libsonnet

        local rowPanels =
          std.filter(
            function(p) p.type == 'row',
            grouped
          );
    
        local CalculateXforPanel(index, panel) =
          local panelsPerRow = std.floor(gridWidth / panel.gridPos.w);
          local col = std.mod(index, panelsPerRow);
          panel + { gridPos+: { x: panel.gridPos.w * col } };
    
        local panelsBeforeRowsWithX = std.mapWithIndex(CalculateXforPanel, panelsBeforeRows);
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. operator/pkg/tpath/struct.go

    	case reflect.Slice:
    		idx, err := strconv.Atoi(path[0])
    		if err != nil {
    			return nil, false, fmt.Errorf("getFromStructPath path %s, expected index number, got %s", path, path[0])
    		}
    		return getFromStructPath(val.Index(idx).Interface(), path[1:])
    	case reflect.Ptr:
    		structElems = reflect.ValueOf(node).Elem()
    		if !util.IsStruct(structElems) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/all.css

        margin-top: 0;
        line-height: 130%
    }
    
    .section-index li.directory {
        margin: 0;
        padding: 0;
        margin-top: 15px;
        margin-left: 0
    }
    
    .section-index li.file {
        margin: 0;
        padding: 0;
        margin-top: 10px
    }
    
    .section-index a {
        font-weight: 400
    }
    
    .section-index ul {
        list-style: disc
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. pkg/test/loadbalancersim/loadbalancer/edf.go

    // Less implements heap.Interface/sort.Interface
    func (pq priorityQueue) Less(i, j int) bool {
    	// Flip logic to make this a min queue.
    	if pq[i].deadline == pq[j].deadline {
    		return pq[i].index < pq[j].index
    	}
    	return pq[i].deadline < pq[j].deadline
    }
    
    // Swap implements heap.Interface/sort.Interface
    func (pq priorityQueue) Swap(i, j int) {
    	pq[i], pq[j] = pq[j], pq[i]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. security/pkg/server/ca/node_auth.go

    	nodeIndex           *kclient.Index[SaNode, *v1.Pod]
    }
    
    func NewClusterNodeAuthorizer(client kube.Client, trustedNodeAccounts sets.Set[types.NamespacedName]) *ClusterNodeAuthorizer {
    	pods := kclient.NewFiltered[*v1.Pod](client, kclient.Filter{
    		ObjectFilter:    client.ObjectFilter(),
    		ObjectTransform: kube.StripPodUnusedFields,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/test/echo/server/forwarder/util.go

    	}
    
    	g := e.NewGroup()
    	for index := 0; index < cfg.count; index++ {
    		index := index
    		workFn := func() error {
    			st := time.Now()
    			resp, err := doReq(ctx, cfg, index)
    			if err != nil {
    				fwLog.Debugf("request failed: %v", err)
    				return err
    			}
    			fwLog.Debugf("got resp: %v", resp)
    
    			responsesMu.Lock()
    			responses[index] = resp
    			responseTimes[index] = time.Since(st)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.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)
  10. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.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)
Back to top