Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for lincoln (0.12 sec)

  1. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish from this earth. Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  2. src/compress/testdata/gettysburg.txt

    died in vain - that this nation, under God, shall have a new
    birth of freedom - and that government of the people, by the
    people, for the people, shall not perish from this earth.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    	fmt.Printf("[bootstrap-token] Creating the %q ConfigMap in the %q namespace\n", bootstrapapi.ConfigMapClusterInfo, metav1.NamespacePublic)
    
    	klog.V(1).Infoln("[bootstrap-token] loading admin kubeconfig")
    	adminConfig, err := clientcmd.LoadFromFile(file)
    	if err != nil {
    		return errors.Wrap(err, "failed to load admin kubeconfig")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	if err != nil {
    		return err
    	}
    
    	klog.V(1).Infoln("[upload-config] Uploading the kubelet component config to a ConfigMap")
    	if err = kubeletphase.CreateConfigMap(&cfg.ClusterConfiguration, client); err != nil {
    		return errors.Wrap(err, "error creating kubelet configuration ConfigMap")
    	}
    
    	klog.V(1).Infoln("[upload-config] Preserving the CRISocket information for the control-plane node")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/preflight.go

    }
    
    // checkUnsupportedPlugins checks if there are any plugins included in the current configuration
    // that are unsupported for migration.
    func checkUnsupportedPlugins(client clientset.Interface) error {
    	klog.V(1).Infoln("validating if there are any unsupported CoreDNS plugins in the Corefile")
    	_, corefile, currentInstalledCoreDNSversion, err := dns.GetCoreDNSInfo(client)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/example_test.go

    	fmt.Println("Defs and Uses of each named object:")
    	usesByObj := make(map[types2.Object][]string)
    	for id, obj := range info.Uses {
    		posn := id.Pos()
    		lineCol := fmt.Sprintf("%d:%d", posn.Line(), posn.Col())
    		usesByObj[obj] = append(usesByObj[obj], lineCol)
    	}
    	var items []string
    	for obj, uses := range usesByObj {
    		sort.Strings(uses)
    		item := fmt.Sprintf("%s:\n  defined at %s\n  used at %s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/completion.go

    	-e "s/\\\$(type${RWORD}/\$(__kubeadm_type/g" \
    	<<'BASH_COMPLETION_EOF'
    `
    	klog.V(1).Infoln("[completion] writing completion code for Zsh")
    	out.Write([]byte(zshInitialization))
    
    	buf := new(bytes.Buffer)
    	kubeadm.GenBashCompletion(buf)
    	klog.V(1).Infoln("[completion] writing completion code for Bash")
    	out.Write(buf.Bytes())
    
    	zshTail := `
    BASH_COMPLETION_EOF
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	// Start with general checks
    	klog.V(1).Infoln("[preflight] Running general checks")
    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// Continue with more specific checks based on the init configuration
    	klog.V(1).Infoln("[preflight] Running configuration dependant checks")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("cleanup-node phase invoked with an invalid data struct")
    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    const klogWrapperDepth = 4
    
    func (klogWrapper) Info(args ...interface{}) {
    	if klogV := klog.V(5); klogV.Enabled() {
    		klogV.InfoSDepth(klogWrapperDepth, fmt.Sprint(args...))
    	}
    }
    
    func (klogWrapper) Infoln(args ...interface{}) {
    	if klogV := klog.V(5); klogV.Enabled() {
    		klogV.InfoSDepth(klogWrapperDepth, fmt.Sprintln(args...))
    	}
    }
    
    func (klogWrapper) Infof(format string, args ...interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top