Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TargetName (0.14 sec)

  1. cmd/kubeadm/app/util/patches/patches.go

    }
    
    // patchSet defines a set of patches of a certain type that can patch a PatchTarget.
    type patchSet struct {
    	targetName string
    	patchType  types.PatchType
    	patches    []string
    }
    
    // String() is used for unit-testing.
    func (ps *patchSet) String() string {
    	return fmt.Sprintf(
    		"{%q, %q, %#v}",
    		ps.targetName,
    		ps.patchType,
    		ps.patches,
    	)
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/wasm_test.go

    	kind, group, name := getTargetRefValues(targetType, targetName)
    
    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetKind":        kind,
    		"TargetGroup":       group,
    		"TargetName":        name,
    	}
    
    	if len(imagePullPolicy) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/wasm-filter.yaml

      {{- if .WasmPluginVersion }}
      annotations:
        wasmPluginVersion: {{ .WasmPluginVersion }}
      {{- end }}
    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  4. src/net/resolverdialfunc_test.go

    func (w SRVWriter) AddSRV(priority, weight, port uint16, target string) error {
    	targetName, err := dnsmessage.NewName(target)
    	if err != nil {
    		return err
    	}
    	w.a.wrote = true
    	err = w.a.builder.SRVResource(w.header(), dnsmessage.SRVResource{
    		Priority: priority,
    		Weight:   weight,
    		Port:     port,
    		Target:   targetName,
    	})
    	if err != nil {
    		panic(err) // internal fault, not user
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

                }
            }
    
            if (targetPattern.equals("*")) {
                for (String targetName : targetComponent.getConfigurationNames()) {
                    ConfigurationGraphResolveState configuration = targetComponent.getConfiguration(targetName);
                    if (configuration.getMetadata().isVisible()) {
                        maybeAddConfiguration(targetConfigurations, configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top