Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 931 for suffix1 (0.16 sec)

  1. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    stderr '(?s)^go: invalid module path "gopkg.in/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/user/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/user/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg/v0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_windows.go

    	}
    	for _, iface := range ifaces {
    		suffixes, err := getRegistryStringValue(fmt.Sprintf("%s\\%s", netIfacesRegistry, iface), "SearchList")
    		if err != nil {
    			return nil, err
    		}
    		if suffixes == "" {
    			continue
    		}
    		for _, suffix := range strings.Split(suffixes, ",") {
    			if !elemInList(suffix, allSuffixes) {
    				allSuffixes = append(allSuffixes, suffix)
    			}
    		}
    	}
    
    	return allSuffixes, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/line_test.go

    		// Test AVX512 suffixes.
    		{"VADDPD.A X0, X1, X2", `unknown suffix "A"`},
    		{"VADDPD.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.B X0, X1, X2", `unknown suffix "A"; unknown suffix "B"`},
    		{"VADDPD.Z.A X0, X1, X2", `Z suffix should be the last; unknown suffix "A"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/volume/util/volumepathhandler/volume_path_handler_linux_test.go

    		},
    		{
    			name:          "path is suffixed with whitespaces",
    			input:         fmt.Sprintf("%s\r\t\n ", defaultPath),
    			expectedOuput: defaultPath,
    		},
    		{
    			name:          "path is suffixed with \"(deleted)\"",
    			input:         pathWithSuffix("(deleted)"),
    			expectedOuput: defaultPath,
    		},
    		{
    			name:          "path is suffixed with \"(deleted)\" and whitespaces",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:53:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/conds.go

    		"runtime.GOOS == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    			if suffix == runtime.GOOS {
    				return true, nil
    			}
    			if _, ok := imports.KnownOS[suffix]; !ok {
    				return false, fmt.Errorf("unrecognized GOOS %q", suffix)
    			}
    			return false, nil
    		})
    
    	conds["GOARCH"] = PrefixCondition(
    		"runtime.GOARCH == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/text8.txt

    If the arguments don't have version suffixes, "go install" may run in
    module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    variable and the presence of a go.mod file. See 'go help modules' for details.
    If module-aware mode is enabled, "go install" runs in the context of the main
    module.
    -- text --
    If the arguments have version suffixes
    (like @latest or @v1.0.0), "go install"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/net/dnsconfig_unix_test.go

    			suffixList = dnsDefaultSearch()
    		}
    
    		var shortestSuffix int
    		for _, suffix := range suffixList {
    			if shortestSuffix == 0 || len(suffix) < shortestSuffix {
    				shortestSuffix = len(suffix)
    			}
    		}
    
    		// 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:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            List<String> suffixes = new ArrayList<>();
    
            suffixes.add(("/" + projectDirName + "/out/production/classes").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/out/production/resources").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/bin").replace('/', File.separatorChar));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_32(text, freq, bucket, sa, numLMS)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/toolchain.go

    // A toolchain is named "goVERSION".
    // A suffix after the VERSION introduced by a -, space, or tab is removed.
    // Examples:
    //
    //	FromToolchain("go1.2.3") == "1.2.3"
    //	FromToolchain("go1.2.3-bigcorp") == "1.2.3"
    //	FromToolchain("invalid") == ""
    func FromToolchain(name string) string {
    	if strings.ContainsAny(name, "\\/") {
    		// The suffix must not include a path separator, since that would cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top