Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for x_name (1.52 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.1.template.gen.yaml

            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: "{{ .DeploymentMeta.Name }}"
            {{ end }}
            {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
            - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.12.template.gen.yaml

            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: "{{ .DeploymentMeta.Name }}"
            {{ end }}
            {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
            - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.13.template.gen.yaml

            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: "{{ .DeploymentMeta.Name }}"
            {{ end }}
            {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
            - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/kubevirtInterfaces.yaml.9.template.gen.yaml

            {{- if .Values.global.network }}
            - name: ISTIO_META_NETWORK
              value: "{{ .Values.global.network }}"
            {{- end }}
            {{- if .DeploymentMeta.Name }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: "{{ .DeploymentMeta.Name }}"
            {{ end }}
            {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
            - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    		return CMPeq
    
    	case TSSA:
    		tname := t.extra.(string)
    		xname := x.extra.(string)
    		// desire fast sorting, not pretty sorting.
    		if len(tname) == len(xname) {
    			if tname == xname {
    				return CMPeq
    			}
    			if tname < xname {
    				return CMPlt
    			}
    			return CMPgt
    		}
    		if len(tname) > len(xname) {
    			return CMPgt
    		}
    		return CMPlt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue configCluster = 64;
    
      // The name of the CA for workloads.
      // For example, when caName=GkeWorkloadCertificate, GKE workload certificates
      // will be used as the certificates for workloads.
      // The default value is "" and when caName="", the CA will be configured by other
      // mechanisms (e.g., environmental variable CA_PROVIDER).
      string caName = 65;
    
      // TODO: remove this?
      // No longer used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    }
    
    // find looks up the loader symbol for the DWARF DIE generated for the
    // type with the specified name.
    func (d *dwctxt) find(name string) loader.Sym {
    	return d.tmap[name]
    }
    
    func (d *dwctxt) mustFind(name string) loader.Sym {
    	r := d.find(name)
    	if r == 0 {
    		Exitf("dwarf find: cannot find %s", name)
    	}
    	return r
    }
    
    func (d *dwctxt) adddwarfref(sb *loader.SymbolBuilder, t loader.Sym, size int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - `group`, the group of the artifact to trust
    - `name`, the name of the artifact to trust
    - `version`, the version of the artifact to trust
    - `file`, the name of the artifact _file_ to trust
    - `regex`, a boolean saying if the `group`, `name`, `version` and `file` attributes need to be interpreted as regular expressions (defaults to `false`)
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    				{Name: "alias", ExternalName: "concrete"},
    			},
    			output: []service{
    				{Name: "concrete", Aliases: host.Names{"alias"}},
    				{Name: "alias", ExternalName: "concrete"},
    			},
    		},
    		{
    			name: "multiple alias",
    			input: []service{
    				{Name: "concrete"},
    				{Name: "alias1", ExternalName: "concrete"},
    				{Name: "alias2", ExternalName: "concrete"},
    			},
    			output: []service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    		logger.V(4).Info("ReclaimVolume: policy is Retain, nothing to do", "volumeName", volume.Name)
    
    	case v1.PersistentVolumeReclaimRecycle:
    		logger.V(4).Info("ReclaimVolume: policy is Recycle", "volumeName", volume.Name)
    		opName := fmt.Sprintf("recycle-%s[%s]", volume.Name, string(volume.UID))
    		ctrl.scheduleOperation(logger, opName, func() error {
    			ctrl.recycleVolumeOperation(ctx, volume)
    			return nil
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top