Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,176 for END (0.03 sec)

  1. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
            resources:
    {{- if .Values.resources }}
    {{ toYaml .Values.resources | trim | indent 10 }}
    {{- end }}
    {{- with .Values.imagePullPolicy }}
            imagePullPolicy: {{ . }}
    {{- end }}
            securityContext:
              allowPrivilegeEscalation: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. helm-releases/minio-5.0.10.tgz

    [ "{{ $statement.resources | join "\",\n\"" }}" ]{{ end }} {{- if $statement.conditions }} {{- $condition_len := len $statement.conditions }} {{- $condition_len := sub $condition_len 1 }} , "Condition": { {{- range $k,$v := $statement.conditions }} {{- range $operator,$object := $v }} "{{ $operator }}": { {{ $object }} }{{- if lt $k $condition_len }},{{- end }} {{- end }}{{- end }} }{{- end }} }{{ if lt $i $statements_length }},{{end }} {{- end }} ] } minio/templates/_helpers.tpl {{/* vim: set filetype=mustache:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 27 00:05:49 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. helm-releases/minio-5.0.9.tgz

    [ "{{ $statement.resources | join "\",\n\"" }}" ]{{ end }} {{- if $statement.conditions }} {{- $condition_len := len $statement.conditions }} {{- $condition_len := sub $condition_len 1 }} , "Condition": { {{- range $k,$v := $statement.conditions }} {{- range $operator,$object := $v }} "{{ $operator }}": { {{ $object }} }{{- if lt $k $condition_len }},{{- end }} {{- end }}{{- end }} }{{- end }} }{{ if lt $i $statements_length }},{{end }} {{- end }} ] } minio/templates/_helpers.tpl {{/* vim: set filetype=mustache:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:23:26 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. helm-releases/minio-5.0.2.tgz

    [ "{{ $statement.resources | join "\",\n\"" }}" ]{{ end }} {{- if $statement.conditions }} {{- $condition_len := len $statement.conditions }} {{- $condition_len := sub $condition_len 1 }} , "Condition": { {{- range $k,$v := $statement.conditions }} {{- range $operator,$object := $v }} "{{ $operator }}": { {{ $object }} }{{- if lt $k $condition_len }},{{- end }} {{- end }}{{- end }} }{{- end }} }{{ if lt $i $statements_length }},{{end }} {{- end }} ] } minio/templates/_helpers.tpl {{/* vim: set filetype=mustache:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Dec 18 07:57:10 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

              {{- if gt ($val | int) 0 }}
              - {{ $key | quote }}
              {{- end }}
            {{- end }}
            {{- end }}
            {{- range $key, $val := $nodeSelector }}
            - key: {{ $key }}
              operator: In
              values:
              - {{ $val | quote }}
            {{- end }}
      {{- end }}
    {{- end }}
    
    {{- define "nodeAffinityPreferredDuringScheduling" }}
      {{- range $key, $val := .global.arch }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        end();
                        div().classAttr("col-5 p-0");
                            text(getTableTitle());
                            a().target("_blank").href("https://github.com/gradle/gradle/commits/" + executionDataProvider.getCommitId()).small().classAttr("text-muted").text(executionDataProvider.getCommitId()).end().end();
                        end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

                }
                end();
                end();
            }
    
            protected int getColumnsForSamples() {
                return 2;
            }
    
            protected void renderHeaderForSamples(String label) {
                th().colspan(String.valueOf(getColumnsForSamples())).text(label).end();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. helm/minio/templates/statefulset.yaml

                  subPath: {{ $subPath }}
                  {{- end }}
                {{- end }}
                {{- else }}
                - name: export
                  mountPath: {{ $mountPath }}
                  {{- if and $penabled $subPath }}
                  subPath: {{ $subPath }}
                  {{- end }}
                {{- end }}
                {{- end }}
                {{- if .Values.extraSecret }}
                - name: extra-secret
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    // It returns the end position of the last token consumed.
    func (s *scanner) scan() (end int) {
    	end = s.end
    	s.token = nil
    	for s.start = s.next; s.next < len(s.b); {
    		i := bytes.IndexByte(s.b[s.next:], '-')
    		if i == -1 {
    			s.end = len(s.b)
    			s.next = len(s.b)
    			i = s.end - s.start
    		} else {
    			s.end = s.next + i
    			s.next = s.end + 1
    		}
    		token := s.b[s.start:s.end]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

              value: "{{ $value }}"
          {{- end }}
          {{- end }}
          {{- end }}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                {{- $first := true }}
                {{- range $index1, $c := .Spec.Containers }}
                  {{- range $index2, $p := $c.Ports }}
                    {{- if (structToJSON $p) }}
                    {{if not $first}},{{end}}{{ structToJSON $p }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top