Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for longName (0.17 sec)

  1. cmd/kubeadm/app/phases/certs/certlist.go

    type configMutatorsFunc func(*kubeadmapi.InitConfiguration, *pkiutil.CertConfig) error
    
    // KubeadmCert represents a certificate that Kubeadm will create to function properly.
    type KubeadmCert struct {
    	Name     string
    	LongName string
    	BaseName string
    	CAName   string
    	// Some attributes will depend on the InitConfiguration, only known at runtime.
    	// These functions will be run in series, passed both the InitConfiguration and a cert Config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		rm.cas[ca.Name] = &CAExpirationHandler{
    			Name:       ca.Name,
    			LongName:   ca.LongName,
    			FileName:   ca.BaseName,
    			readwriter: pkiReadWriter,
    		}
    	}
    
    	// gets the list of certificates that should be considered for renewal
    	kubeConfigs := []struct {
    		longName string
    		fileName string
    	}{
    		{
    			longName: "certificate embedded in the kubeconfig file for the admin to use and for kubeadm itself",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/certs.go

    		// get the cobra.Command skeleton for this command
    		cmd := &cobra.Command{
    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    		renewalFunc := func(handler *renewal.CertificateRenewHandler) func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    				Typeflag: TypeReg,
    				Name:     strings.Repeat("longname/", 15) + "16gig.txt",
    				Size:     16 << 30,
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      1000,
    				Uname:    "guillaume",
    				Gname:    "guillaume",
    				ModTime:  time.Unix(1399583047, 0),
    			}, nil},
    		},
    	}, {
    		// This file was produced using GNU tar v1.17.
    		//	gnutar -b 4 --format=ustar (longname/)*15 + file.txt
    		file: "testdata/ustar.tar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    	phase := workflow.Phase{
    		Name:  certSpec.Name,
    		Short: fmt.Sprintf("Generate the %s", certSpec.LongName),
    		Long: fmt.Sprintf(
    			genericLongDesc,
    			certSpec.LongName,
    			certSpec.BaseName,
    			getSANDescription(certSpec),
    		),
    		Run:          run,
    		InheritFlags: getCertPhaseFlags(certSpec.Name),
    	}
    	return phase
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/archive/tar/writer.go

    	const longName = "././@LongLink"
    	if len(hdr.Name) > nameSize {
    		data := hdr.Name + "\x00"
    		if err := tw.writeRawFile(longName, data, TypeGNULongName, FormatGNU); err != nil {
    			return err
    		}
    	}
    	if len(hdr.Linkname) > nameSize {
    		data := hdr.Linkname + "\x00"
    		if err := tw.writeRawFile(longName, data, TypeGNULongLink, FormatGNU); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/testflag.go

    }
    
    func exitWithUsage() {
    	fmt.Fprintf(os.Stderr, "usage: %s\n", CmdTest.UsageLine)
    	fmt.Fprintf(os.Stderr, "Run 'go help %s' and 'go help %s' for details.\n", CmdTest.LongName(), HelpTestflag.LongName())
    
    	base.SetExitStatus(2)
    	base.Exit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/os/file.go

    // bits (before umask).
    // If there is an error, it will be of type *PathError.
    func Mkdir(name string, perm FileMode) error {
    	longName := fixLongPath(name)
    	e := ignoringEINTR(func() error {
    		return syscall.Mkdir(longName, syscallMode(perm))
    	})
    
    	if e != nil {
    		return &PathError{Op: "mkdir", Path: name, Err: e}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/networking/core/accesslog.go

    	if isListener {
    		accessLogFriendlyName = listenerEnvoyAccessLogFriendlyName
    	}
    	fl := &grpcaccesslog.TcpGrpcAccessLogConfig{
    		CommonConfig: &grpcaccesslog.CommonGrpcAccessLogConfig{
    			LogName: accessLogFriendlyName,
    			GrpcService: &core.GrpcService{
    				TargetSpecifier: &core.GrpcService_EnvoyGrpc_{
    					EnvoyGrpc: &core.GrpcService_EnvoyGrpc{
    						ClusterName: EnvoyAccessLogCluster,
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top