Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 633 for isIdent (0.35 sec)

  1. helm-releases/minio-1.0.4.tgz

    .Values.environment }} - name: {{ $key }} value: {{ $val | quote }} {{- end}} resources: {{ toYaml .Values.resources | indent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{ toYaml . | indent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{ toYaml . | indent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{ toYaml . | indent 8 }} {{- end }} volumes: - name: export {{- if .Values.persistence.enabled }} persistentVolumeClai: claimName:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 25 02:12:51 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  2. helm-releases/minio-1.0.5.tgz

    .Values.environment }} - name: {{ $key }} value: {{ $val | quote }} {{- end}} resources: {{ toYaml .Values.resources | indent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{ toYaml . | indent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{ toYaml . | indent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{ toYaml . | indent 8 }} {{- end }} volumes: - name: export {{- if .Values.persistence.enabled }} persistentVolumeClai: claimName:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 25 19:53:57 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  3. helm-releases/minio-2.0.0.tgz

    .Values.environment }} - name: {{ $key }} value: {{ $val | quote }} {{- end}} resources: {{ toYaml .Values.resources | indent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{ toYaml . | indent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{- with .Values.affinity }} affinity: {{ toYaml . | indent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{ toYaml . | indent 8 }} {{- end }} volumes: - name: export {{- if .Values.persistence.enabled }} persistentVolumeClai: claimName:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 26 07:36:46 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/dumper.go

    		if x.IsNil() {
    			p.printf("nil")
    			return
    		}
    		p.printf("%s (%d entries) {", x.Type(), x.Len())
    		if x.Len() > 0 {
    			p.indent++
    			p.printf("\n")
    			for i, n := 0, x.Len(); i < n; i++ {
    				p.printf("%d: ", i)
    				p.dump(x.Index(i), nil)
    				p.printf("\n")
    			}
    			p.indent--
    		}
    		p.printf("}")
    
    	case reflect.Struct:
    		typ := x.Type()
    
    		// if span, ok := x.Interface().(lexical.Span); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    //     "namespace", "return".
    func Escape(ident string) (string, bool) {
    	if len(ident) == 0 || ('0' <= ident[0] && ident[0] <= '9') {
    		return "", false
    	}
    	if celReservedSymbols.Has(ident) {
    		return "__" + ident + "__", true
    	}
    
    	escapeCheck := skipRegexCheck(ident)
    	if escapeCheck.invalidCharFound {
    		return "", false
    	}
    	if escapeCheck.canSkipRegex {
    		return ident, true
    	}
    
    	ok := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/dump/dump.go

    )
    
    var prettyPrintConfig = &spew.ConfigState{
    	Indent:                  "  ",
    	DisableMethods:          true,
    	DisablePointerAddresses: true,
    	DisableCapacities:       true,
    }
    
    // The config MUST NOT be changed because that could change the result of a hash operation
    var prettyPrintConfigForHash = &spew.ConfigState{
    	Indent:                  " ",
    	SortKeys:                true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/go/doc/testdata/template.txt

    	{{node .Decl $.FSet}}
    
    {{end}}{{end}}{{end}}{{/*
    
    */}}{{with .Bugs}}
    BUGS .Bugs is now deprecated, please use .Notes instead
    {{range .}}{{indent "\t" .}}
    {{end}}{{end}}{{with .Notes}}{{range $marker, $content := .}}
    {{$marker}}S
    {{range $content}}{{$marker}}({{.UID}}){{indent "\t" .Body}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            "abc de"  | true
            " abcde"  | true
            "abcde "  | true
            "abc\tde" | true
            "abc\nde" | true
        }
    
        def indent() {
            expect:
            TextUtil.indent(text, indent) == result
    
            where:
            text                | indent | result
            ""                  | ""     | ""
            "abc"               | "  "   | "  abc"
            "abc"               | "def"  | "defabc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/XIncludeAwareXmlProvider.groovy

        }
    
        void write(File destFile, boolean indent = false) {
            destFile.withOutputStream { OutputStream stream ->
                TransformerFactory factory = TransformerFactory.newInstance()
                Transformer transformer = factory.newTransformer()
                if (indent) {
                    transformer.setOutputProperty(OutputKeys.INDENT, "yes")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/poddisruptionbudget.yaml

      labels:
    {{ $gateway.labels | toYaml | trim | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
      minAvailable: 1
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | trim | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 666 bytes
    - Viewed (0)
Back to top