Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for pkipath (0.17 sec)

  1. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    func PathsForCertAndKey(pkiPath, name string) (string, string) {
    	return pathForCert(pkiPath, name), pathForKey(pkiPath, name)
    }
    
    func pathForCert(pkiPath, name string) string {
    	return filepath.Join(pkiPath, fmt.Sprintf("%s.crt", name))
    }
    
    func pathForKey(pkiPath, name string) string {
    	return filepath.Join(pkiPath, fmt.Sprintf("%s.key", name))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	cfg := data.Cfg()
    	pkiPath := filepath.Join(data.KubeletDir(), "pki")
    	val, idx := kubeadmapi.GetArgValue(cfg.NodeRegistration.KubeletExtraArgs, "cert-dir", -1)
    	if idx > -1 {
    		pkiPath = val
    	}
    
    	// Check for the existence of the kubelet-client-current.pem file in the kubelet certificate directory.
    	rotate := false
    	pemPath := filepath.Join(pkiPath, "kubelet-client-current.pem")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/doc.go

    			The API Server endpoint (AdvertiseAddress + BindPort) is required so the kubeconfig file knows where to find the control-plane
    			The KubernetesDir path is required for knowing where to put the kubeconfig files
    			The PKIPath is required for knowing where all certificates should be stored
    
    	OUTPUTS:
    		Files to KubernetesDir (default /etc/kubernetes):
    		 - admin.conf
    		 - kubelet.conf
    		 - scheduler.conf
    		 - controller-manager.conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 13 15:13:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/internal/pkgpath/pkgpath.go

    func toSymbolV1(ppath string) string {
    	clean := func(r rune) rune {
    		switch {
    		case 'A' <= r && r <= 'Z', 'a' <= r && r <= 'z',
    			'0' <= r && r <= '9':
    			return r
    		}
    		return '_'
    	}
    	return strings.Map(clean, ppath)
    }
    
    // toSymbolV2 converts a package path using the second mangling scheme.
    func toSymbolV2(ppath string) string {
    	var bsl strings.Builder
    	changed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/pidf-diff+xml",
    				"application/pkcs10",
    				"application/pkcs7-mime",
    				"application/pkcs7-signature",
    				"application/pkix-cert",
    				"application/pkix-crl",
    				"application/pkix-pkipath",
    				"application/pkixcmp",
    				"application/pls+xml",
    				"application/poc-settings+xml",
    				"application/postscript",
    				"application/prs.alvestrand.titrax-sheet",
    				"application/prs.cww",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. src/runtime/type.go

    		return false
    	}
    	ut := t.Uncommon()
    	uv := v.Uncommon()
    	if ut != nil || uv != nil {
    		if ut == nil || uv == nil {
    			return false
    		}
    		pkgpatht := rt.nameOff(ut.PkgPath).Name()
    		pkgpathv := rv.nameOff(uv.PkgPath).Name()
    		if pkgpatht != pkgpathv {
    			return false
    		}
    	}
    	if abi.Bool <= kind && kind <= abi.Complex128 {
    		return true
    	}
    	switch kind {
    	case abi.String, abi.UnsafePointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/internal/coverage/rtcov/rtcov.go

    // or 0 for impossible errors.
    func AddMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkgpath string, pkgid int, cmode uint8, cgran uint8) uint32 {
    	slot := len(Meta.List)
    	Meta.List = append(Meta.List, CovMetaBlob{
    		P:                  (*byte)(p),
    		Len:                dlen,
    		Hash:               hash,
    		PkgPath:            pkgpath,
    		PkgID:              pkgid,
    		CounterMode:        cmode,
    		CounterGranularity: cgran,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    	for i := range pkgList {
    		pkgPathOff := r.uint64()
    		pkgPath := p.stringAt(pkgPathOff)
    		pkgName := p.stringAt(r.uint64())
    		_ = r.uint64() // package height; unused by go/types
    
    		if pkgPath == "" {
    			pkgPath = path
    		}
    		pkg := imports[pkgPath]
    		if pkg == nil {
    			pkg = types.NewPackage(pkgPath, pkgName)
    			imports[pkgPath] = pkg
    		} else if pkg.Name() != pkgName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    }
    
    func (gcToolchain) linker() string {
    	return base.Tool("link")
    }
    
    func pkgPath(a *Action) string {
    	p := a.Package
    	ppath := p.ImportPath
    	if cfg.BuildBuildmode == "plugin" {
    		ppath = pluginPath(a)
    	} else if p.Name == "main" && !p.Internal.ForceLibrary {
    		ppath = "main"
    	}
    	return ppath
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. test/fixedbugs/issue16616.dir/issue16616.go

    func main() {
    	if got := reflect.ValueOf(b.V).Type().Field(0).PkgPath; got != "b" {
    		panic(`PkgPath=` + got + ` for first field of b.V, want "b"`)
    	}
    	if got := reflect.ValueOf(V).Type().Field(0).PkgPath; got != "main" {
    		panic(`PkgPath=` + got + ` for first field of V, want "main"`)
    	}
    	if got := reflect.ValueOf(b.U).Type().Field(0).PkgPath; got != "b" {
    		panic(`PkgPath=` + got + ` for first field of b.U, want "b"`)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 11:46:15 UTC 2016
    - 666 bytes
    - Viewed (0)
Back to top