Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. internal/s3select/csv/reader_contrib_test.go

    3389233,2,2014-03-29 09:38:12,2014-03-29 09:44:16,N,1,-73.952728271484375,40.789501190185547,-73.950935363769531,40.775600433349609,1,1.10,6.5,0,0.5,1.3,0,,,8.3,1,1,75,263,green,1.81,0.0,0.0,59,43,10.74,1267,168,1,Manhattan,01680...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  2. src/strings/replace_test.go

    	gen3 := NewReplacer(
    		"abracadabra", "poof",
    		"abracadabrakazam", "splat",
    		"abraham", "lincoln",
    		"abrasion", "scrape",
    		"abraham", "isaac",
    	)
    	testCases = append(testCases,
    		testCase{gen3, "abracadabrakazam abraham", "poofkazam lincoln"},
    		testCase{gen3, "abrasion abracad", "scrape abracad"},
    		testCase{gen3, "abba abram abrasive", "abba abram abrasive"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  3. src/compress/gzip/gunzip_test.go

    			"birth of freedom — and that government of the people, by the\n" +
    			"people, for the people, shall not perish from this earth.\n" +
    			"\n" +
    			"Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania\n",
    		[]byte{
    			0x1f, 0x8b, 0x08, 0x08, 0xd1, 0x12, 0x2b, 0x4a,
    			0x00, 0x03, 0x67, 0x65, 0x74, 0x74, 0x79, 0x73,
    			0x62, 0x75, 0x72, 0x67, 0x00, 0x65, 0x54, 0xcd,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    lib.wy.us lidl lier.no lierne.no life lifeinsurance lifestyle lig.it lighting liguria.it like likes-pie.com likescandy.com lillehammer.no lillesand.no lilly lima-city.at lima-city.ch lima-city.de lima-city.rocks lima.zone limanowa.pl limited limo lincoln lincoln.museum lindas.no linde lindesnes.no lindås.no link linkyard-cloud.ch linkyard.cloud linz.museum lipsy littlestar.jp live living living.museum livinghistory.museum livorno.it lk lk3.ru llc llp ln.cn lo.it loabat.no loabát.no loan loans localhistory.museum...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/apply.go

    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/token.go

    			if len(args) > 0 {
    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    			if err := validation.ValidateMixedArguments(tokenCmd.Flags()); err != nil {
    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/plan.go

    	klog.V(1).Infoln("[upgrade/plan] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/plan] retrieving configuration from cluster")
    	client, versionGetter, initCfg, upgradeCfg, err := enforceRequirements(flagSet, flags.applyPlanFlags, args, false, false, printer)
    	if err != nil {
    		return err
    	}
    
    	// Compute which upgrade possibilities there are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks.go

    func (ContainerRuntimeCheck) Name() string {
    	return "CRI"
    }
    
    // Check validates the container runtime
    func (crc ContainerRuntimeCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating the container runtime")
    	if err := crc.runtime.IsRunning(); err != nil {
    		errorList = append(errorList, err)
    	}
    	return warnings, errorList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. src/go/token/position_test.go

    	{"f", []byte("package p\n\nimport \"fmt\""), 23, []int{0, 10, 11}},
    	{"g", []byte("package p\n\nimport \"fmt\"\n"), 24, []int{0, 10, 11}},
    	{"h", []byte("package p\n\nimport \"fmt\"\n "), 25, []int{0, 10, 11, 24}},
    }
    
    func linecol(lines []int, offs int) (int, int) {
    	prevLineOffs := 0
    	for line, lineOffs := range lines {
    		if offs < lineOffs {
    			return line, offs - prevLineOffs + 1
    		}
    		prevLineOffs = lineOffs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/join.go

    	// and validates JoinConfiguration
    	if opt.externalcfg.NodeRegistration.Name == "" {
    		klog.V(1).Infoln("[preflight] found NodeName empty; using OS hostname as NodeName")
    	}
    
    	if opt.externalcfg.ControlPlane != nil && opt.externalcfg.ControlPlane.LocalAPIEndpoint.AdvertiseAddress == "" {
    		klog.V(1).Infoln("[preflight] found advertiseAddress empty; using default interface's IP address as advertiseAddress")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top