Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for caFile (0.06 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_ExternalEtcd_To_kubeadm_ExternalEtcd(in *ExternalEtcd, out *kubeadm.ExternalEtcd, s conversion.Scope) error {
    	out.Endpoints = *(*[]string)(unsafe.Pointer(&in.Endpoints))
    	out.CAFile = in.CAFile
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	return nil
    }
    
    // Convert_v1beta4_ExternalEtcd_To_kubeadm_ExternalEtcd is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    //   - Svalue of the C_FILE symbol: if it is the last one, this Svalue must be -1
    //   - Xsclen of the csect symbol.
    func (f *xcoffFile) updatePreviousFile(ctxt *Link, last bool) {
    	// first file
    	if currSymSrcFile.file == nil {
    		return
    	}
    
    	// Update C_FILE
    	cfile := currSymSrcFile.file
    	if last {
    		cfile.Nvalue = 0xFFFFFFFFFFFFFFFF
    	} else {
    		cfile.Nvalue = uint64(f.symbolCount)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top