Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for skip_headers (0.36 sec)

  1. cmd/kubeadm/app/kubeadm.go

    func Run() error {
    	var allFlags flag.FlagSet
    	klog.InitFlags(&allFlags)
    	// only add the flags that are still supported for kubeadm
    	allFlags.VisitAll(func(f *flag.Flag) {
    		switch f.Name {
    		case "v", "add_dir_header", "skip_headers":
    			flag.CommandLine.Var(f.Value, f.Name, f.Usage)
    		}
    	})
    
    	pflag.CommandLine.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 04:38:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    		return false
    	}
    
    	if !present {
    		*out = defaultValue
    		return true
    	}
    
    	return child.ReadASN1Boolean(out)
    }
    
    func (s *String) readASN1(out *String, outTag *asn1.Tag, skipHeader bool) bool {
    	if len(*s) < 2 {
    		return false
    	}
    	tag, lenByte := (*s)[0], (*s)[1]
    
    	if tag&0x1f == 0x1f {
    		// ITU-T X.690 section 8.1.2
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top