Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for toName (0.2 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. src/cmd/compile/internal/ir/copy.go

    // DeepCopy returns a “deep” copy of n, with its entire structure copied
    // (except for shared nodes like ONAME, ONONAME, OLITERAL, and OTYPE).
    // If pos.IsKnown(), it sets the source position of newly allocated Nodes to pos.
    func DeepCopy(pos src.XPos, n Node) Node {
    	var edit func(Node) Node
    	edit = func(x Node) Node {
    		switch x.Op() {
    		case ONAME, ONONAME, OLITERAL, ONIL, OTYPE:
    			return x
    		}
    		x = Copy(x)
    		if pos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:57:57 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. 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)
  4. helm/minio/templates/pvc.yaml

      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      {{- if .Values.persistence.annotations }}
      annotations: {{- toYaml .Values.persistence.annotations | nindent 4 }}
      {{- end }}
    spec:
      accessModes:
        - {{ .Values.persistence.accessMode | quote }}
      resources:
        requests:
          storage: {{ .Values.persistence.size | quote }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 30 06:59:40 UTC 2023
    - 1014 bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/poddisruptionbudget.yaml

      labels:
        {{- include "gateway.labels" . | nindent 4}}
    spec:
      selector:
        matchLabels:
      {{- include "gateway.selectorLabels" . | nindent 6 }}
      {{- with .Values.podDisruptionBudget }}
        {{- toYaml . | nindent 2 }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 15:16:23 UTC 2023
    - 421 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            1 * queue.setLogLocation(LOG_LOCATION)
            0 * _
        }
    
        def "sets -soname for linux"() {
            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
            final expectedArgs = [
                    "-shared",
                    "-Wl,-soname,installName",
                    "-o", outputFile.absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top