Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for toName (0.15 sec)

  1. manifests/charts/gateway/templates/role.yaml

    kind: Role
    metadata:
      name: {{ include "gateway.serviceAccountName" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    rules:
    - apiGroups: [""]
      resources: ["secrets"]
      verbs: ["get", "watch", "list"]
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 21 16:58:32 UTC 2023
    - 963 bytes
    - Viewed (0)
  2. pilot/pkg/model/conversion_test.go

    	}
    
    	gotYAML, err := protomarshal.ToYAML(msg)
    	if err != nil {
    		t.Errorf("ToYAML failed: %v", err)
    	}
    	if !reflect.DeepEqual(gotYAML, wantYAML) {
    		t.Errorf("ToYAML failed: got %+v want %+v", spew.Sdump(gotYAML), spew.Sdump(wantYAML))
    	}
    
    	if _, err = protomarshal.ToYAML(nil); err == nil {
    		t.Error("should produce an error")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/goflags.txt

    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "--"'
    
    env GOFLAGS=---oops
    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "---oops"'
    
    env GOFLAGS=-=noname
    ! go list runtime
    stderr '^go: parsing \$GOFLAGS: non-flag "-=noname"'
    
    env GOFLAGS=-f
    ! go list runtime
    stderr '^go: flag needs an argument: -f \(from (\$GOFLAGS|%GOFLAGS%)\)$'
    
    env GOFLAGS=-e=asdf
    ! go list runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. helm/minio/templates/console-ingress.yaml

        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
        {{- with .Values.consoleIngress.labels }}
          {{- toYaml . | nindent 4 }}
        {{- end }}
      {{- with .Values.consoleIngress.annotations }}
      annotations: {{- toYaml . | nindent 4 }}
      {{- end }}
    spec:
      {{- if .Values.consoleIngress.ingressClassName }}
      ingressClassName: {{ .Values.consoleIngress.ingressClassName }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. helm/minio/templates/ingress.yaml

        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
        {{- with .Values.ingress.labels }}
          {{- toYaml . | nindent 4 }}
        {{- end }}
      {{- with .Values.ingress.annotations }}
      annotations: {{- toYaml . | nindent 4 }}
      {{- end }}
    spec:
      {{- if .Values.ingress.ingressClassName }}
      ingressClassName: {{ .Values.ingress.ingressClassName }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/ArchivePublishArtifactTest.groovy

            a.extension == "jar"
            a.file == quiteEmptyJar.archiveFile.get().asFile
            a.type == "jar"
        }
    
        def "configures name correctly"() {
            def noName = testUtil.task(DummyJar)
            def withArchiveName = testUtil.task(DummyJar)
            withArchiveName.archiveFileName.set("hey")
            def withBaseName = testUtil.task(DummyJar)
            withBaseName.archiveBaseName.set("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/daemonset.yaml

                - mountPath: /var/run/ztunnel
                  name: cni-ztunnel-sock-dir
                {{ end }}
              resources:
    {{- if .Values.cni.resources }}
    {{ toYaml .Values.cni.resources | trim | indent 12 }}
    {{- else }}
    {{ toYaml .Values.global.defaultResources | trim | indent 12 }}
    {{- end }}
          volumes:
            # Used to install CNI.
            - name: cni-bin-dir
              hostPath:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. manifests/charts/gateway/templates/serviceaccount.yaml

    metadata:
      name: {{ include "gateway.serviceAccountName" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4 }}
      {{- with .Values.serviceAccount.annotations }}
      annotations:
        {{- toYaml . | nindent 4 }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 09 22:35:06 UTC 2021
    - 357 bytes
    - Viewed (0)
  9. operator/pkg/util/yaml.go

    		v, err := protomarshal.ToYAML(proto)
    		if err != nil {
    			return nil, err
    		}
    		vs = []byte(v)
    	} else {
    		v, err := yaml.Marshal(root)
    		if err != nil {
    			return nil, err
    		}
    		vs = v
    	}
    	return vs, nil
    }
    
    func MustToYAMLGeneric(root any) string {
    	var vs []byte
    	if proto, ok := root.(proto.Message); ok {
    		v, err := protomarshal.ToYAML(proto)
    		if err != nil {
    			return err.Error()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

      meshNetworks: |-
      {{- if .Values.global.meshNetworks }}
        networks:
    {{ toYaml .Values.global.meshNetworks | trim | indent 6 }}
      {{- else }}
        networks: {}
      {{- end }}
    
      mesh: |-
    {{- if .Values.meshConfig }}
    {{ $mesh | toYaml | indent 4 }}
    {{- else }}
    {{- include "mesh" . }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top