Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for toName (0.18 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/serviceaccount.yaml

      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
      annotations:
    {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/serviceaccount.yaml

      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
      annotations:
    {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 592 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    			// (*"encoding/json".Decoder).Decode
    			// (* "encoding/gob".Decoder).Decode
    			// (* "encoding/xml".Decoder).Decode
    			_, named := typesinternal.ReceiverNamed(recv)
    			if tname := named.Obj(); tname.Name() == "Decoder" {
    				switch tname.Pkg().Path() {
    				case "encoding/json", "encoding/xml", "encoding/gob":
    					argidx = 0 // func(interface{})
    				}
    			}
    		}
    		if argidx < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 951 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            List<String> lines = process.inputStream.readLines()
            return readSoName(lines)
        }
    
        @VisibleForTesting
        static String readSoName(List<String> lines) {
            final Pattern pattern = ~/^.*\(SONAME\)\s+.*soname.*\: \[(.*)\]$/
            String matchingLine = lines.find {
                pattern.matcher(it).matches()
            }
            if (matchingLine == null) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/internal/reflectlite/type.go

    		i := 0
    		for j := 0; j < len(v.Methods); j++ {
    			tm := &t.Methods[i]
    			tmName := rT.nameOff(tm.Name)
    			vm := &v.Methods[j]
    			vmName := rV.nameOff(vm.Name)
    			if vmName.Name() == tmName.Name() && rV.typeOff(vm.Typ) == rT.typeOff(tm.Typ) {
    				if !tmName.IsExported() {
    					tmPkgPath := pkgPath(tmName)
    					if tmPkgPath == "" {
    						tmPkgPath = t.PkgPath.Name()
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. helm/minio/templates/service.yaml

        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
        monitoring: "true"
      {{- if .Values.service.annotations }}
      annotations: {{- toYaml .Values.service.annotations | nindent 4 }}
      {{- end }}
    spec:
      type: {{ .Values.service.type }}
      {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }}
      clusterIP: {{ .Values.service.clusterIP }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

          name: memory
          target:
            type: Utilization
            averageUtilization: {{ .Values.pilot.memory.targetAverageUtilization }}
      {{- end }}
      {{- if .Values.pilot.autoscaleBehavior }}
      behavior: {{ toYaml .Values.pilot.autoscaleBehavior | nindent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. helm/minio/templates/console-service.yaml

        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      {{- if .Values.consoleService.annotations }}
      annotations: {{- toYaml .Values.consoleService.annotations | nindent 4 }}
      {{- end }}
    spec:
      type: {{ .Values.consoleService.type }}
      {{- if and (eq .Values.consoleService.type "ClusterIP") .Values.consoleService.clusterIP }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 949 bytes
    - Viewed (0)
Back to top