Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for longName (0.42 sec)

  1. src/archive/tar/testdata/ustar.tar

    longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/longname/file.txt hello...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/DefaultOutputDirSelector.groovy

        }
    
        private static String shortenPath(String longName, int expectedMaxLength) {
            if (longName.length() <= expectedMaxLength) {
                return longName
            } else {
                return longName.substring(0, expectedMaxLength - 10) + "." + longName.substring(longName.length() - 9)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

         */
        private String shortenPath(String longName, int expectedMaxLength) {
            if (longName.length() <= expectedMaxLength) {
                return longName;
            } else {
                return longName.substring(0, expectedMaxLength - 5) + "." + longName.substring(longName.length() - 4);
            }
        }
    
        @Override
        public TestFile getTestDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/net/dnsconfig_unix_test.go

    		// Test a name that will be maximally long when prefixing the shortest
    		// suffix (accounting for the intervening dot).
    		longName := longDomain[len(longDomain)-254+1+shortestSuffix:]
    		if longName[0] == '.' || longName[1] == '.' {
    			longName = "aa." + longName[3:]
    		}
    		for _, fqdn := range conf.nameList(longName) {
    			if len(fqdn) > 254 {
    				t.Errorf("got %d; want less than or equal to 254", len(fqdn))
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. src/go/printer/testdata/alignment.golden

    	z := MyStruct{
    		Foo:		"foo",
    		Bar:		"bar",
    		Name:		"name",
    		LongName:	"longname",
    		Baz:		"baz",
    	}
    	y := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    		NameXX:			"name",
    		LongNameXXXXXXXXXXXXX:	"longname",
    		Baz:			"baz",
    	}
    	z := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    		Name:			"name",
    		LongNameXXXXXXXXXXXXX:	"longname",
    		Baz:			"baz",
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/alignment.input

        z := MyStruct{
            Foo:      "foo",
            Bar:      "bar",
            Name:     "name",
            LongName: "longname",
            Baz:      "baz",
        }
        y := MyStruct{
            Foo:                   "foo",
            Bar:                   "bar",
            NameXX:                "name",
            LongNameXXXXXXXXXXXXX: "longname",
            Baz: "baz",
        }
        z := MyStruct{
            Foo:  "foo",
            Bar:  "bar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  9. src/archive/tar/strconv_test.go

    	medName := strings.Repeat("CD", 50)
    	longName := strings.Repeat("AB", 100)
    
    	vectors := []struct {
    		in      string
    		wantRes string
    		wantKey string
    		wantVal string
    		ok      bool
    	}{
    		{"6 k=v\n\n", "\n", "k", "v", true},
    		{"19 path=/etc/hosts\n", "", "path", "/etc/hosts", true},
    		{"210 path=" + longName + "\nabc", "abc", "path", longName, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  10. src/cmd/go/internal/base/base.go

    		return true
    	}
    	for _, sub := range c.Commands {
    		if hasFlag(sub, name) {
    			return true
    		}
    	}
    	return false
    }
    
    // LongName returns the command's long name: all the words in the usage line between "go" and a flag or argument,
    func (c *Command) LongName() string {
    	name := c.UsageLine
    	if i := strings.Index(name, " ["); i >= 0 {
    		name = name[:i]
    	}
    	if name == "go" {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top