Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for flagname (0.17 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		kubeadmcmdoptions.UploadCerts,
    		"print-join-command", "rootfs", "v", "log-file")
    	if allowedFlags.Has(flagName) {
    		return true
    	}
    	return strings.HasPrefix(flagName, "skip-")
    }
    
    // ValidateFeatureGates validates provided feature gates
    func ValidateFeatureGates(featureGates map[string]bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	// check valid feature names are provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	{0x100, "SHF_OS_NONCONFORMING"},
    	{0x200, "SHF_GROUP"},
    	{0x400, "SHF_TLS"},
    	{0x800, "SHF_COMPRESSED"},
    }
    
    func (i SectionFlag) String() string   { return flagName(uint32(i), shfStrings, false) }
    func (i SectionFlag) GoString() string { return flagName(uint32(i), shfStrings, true) }
    
    // Section compression type.
    type CompressionType int
    
    const (
    	COMPRESS_ZLIB   CompressionType = 1          /* ZLIB compression. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/flag/flag.go

    	var flagvar int
    	func init() {
    		flag.IntVar(&flagvar, "flagname", 1234, "help message for flagname")
    	}
    
    Or you can create custom flags that satisfy the Value interface (with
    pointer receivers) and couple them to flag parsing by
    
    	flag.Var(&flagVal, "name", "help message for flagname")
    
    For such flags, the default value is just the initial value of the variable.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. samples/ambient-argo/tag-chart/templates/mutatingwebhooks.yaml

    {{- end }}
    
    {{- range $tagName, $tag := $.Values.base.tags }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq $.Release.Namespace "istio-system"}}
      name: istio-revision-tag-{{ $tagName }}
    {{- else }}
      name: istio-revision-tag-{{ $tagName }}-{{ $.Release.Namespace }}
    {{- end }}
      labels:
        istio.io/tag: {{ $tagName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

        }
    
    #if ( $locationTracking )
        private <T> void writeList(String tagName, List<T> list, XMLStreamWriter serializer, InputLocationTracker locationTracker, ElementWriter<T> writer) throws IOException, XMLStreamException {
            writeList(tagName, false, list, serializer, locationTracker, writer);
    #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging.go

    	return al
    }
    
    func tcpGrpcAccessLogFromTelemetry(push *PushContext, prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyTcpGrpcV3LogProvider) *accesslog.AccessLog {
    	logName := TCPEnvoyAccessLogFriendlyName
    	if prov != nil && prov.LogName != "" {
    		logName = prov.LogName
    	}
    
    	filterObjects := envoyWasmStateToLog
    	if len(prov.FilterStateObjectsToLog) != 0 {
    		filterObjects = prov.FilterStateObjectsToLog
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/tag.go

    	webhooks, err := GetWebhooksWithTag(ctx, kubeClient, tagName)
    	if err != nil {
    		return fmt.Errorf("failed to retrieve tag with name %s: %v", tagName, err)
    	}
    	if len(webhooks) == 0 {
    		return fmt.Errorf("cannot remove tag %q: cannot find MutatingWebhookConfiguration for tag", tagName)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/mdo/writer.vm

      #end
                serializer.endTag(NAMESPACE, tagName);
            }
        }
    
     #end
    #end
        @FunctionalInterface
        private interface ElementWriter<T> {
            public void write(T t) throws IOException;
        }
    
        private <T> void writeList(String tagName, List<T> list, XmlSerializer serializer, ElementWriter<T> writer) throws IOException {
            writeList(tagName, false, list, serializer, writer);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. internal/s3select/parquet/reader.go

    	}
    
    	kvs := jstream.KVS{}
    	for _, col := range pr.r.Columns() {
    
    		var value interface{}
    		if v, ok := nextRow[col.FlatName()]; ok {
    			value, err = convertFromAnnotation(col.Element(), v)
    			if err != nil {
    				return nil, errParquetParsingError(err)
    			}
    		}
    		kvs = append(kvs, jstream.KV{Key: col.FlatName(), Value: value})
    	}
    
    	// Reuse destination if we can.
    	dstRec, ok := dst.(*jsonfmt.Record)
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 14 13:54:47 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    {{- end }}
    {{- range $tagName := $.Values.revisionTags }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq $.Release.Namespace "istio-system"}}
      name: istio-revision-tag-{{ $tagName }}
    {{- else }}
      name: istio-revision-tag-{{ $tagName }}-{{ $.Release.Namespace }}
    {{- end }}
      labels:
        istio.io/tag: {{ $tagName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top