Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 1234abcdef (1.9 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

            a                       | b
            '5.1'                   | '5.1-commit-123456789'
            '5.1'                   | '5.1-commit-bcda90482104'
            '5.1-commit-1234'       | '5.0'
            '5.1-commit-1234abcdef' | '4.10.2'
            '5.1-commit-1234'       | '5.0-commit-1234'
            '5.0-commit-222'        | '5.0-commit-111'
            '5.0-commit-f1efb03'    | '5.0-commit-f1efb02'
        }
    
        def "can get version base"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/edit.go

    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    func allowedVersionArg(arg string) bool {
    	return !modfile.MustQuote(arg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/edit.go

    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    func allowedVersionArg(arg string) bool {
    	return !modfile.MustQuote(arg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            buf.append("12345ABCDE");
            request.setParameter("userCode", buf.toString());
            assertNotNull(userInfoHelper.getUserCodeFromRequest(request));
            buf.append("12345ABCDE");
            request.setParameter("userCode", buf.toString());
            assertNotNull(userInfoHelper.getUserCodeFromRequest(request));
            buf.append("12345ABCDE");
            request.setParameter("userCode", buf.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_query_empty.txt

    -- go.mod.orig --
    module example.com/othermodule
    go 1.13
    -- $WORK/badproxy/example.com/join/subpkg/@v/list --
    v0.0.0-20190624000000-123456abcdef
    -- $WORK/badproxy/example.com/join/subpkg/@v/v0.0.0-20190624000000-123456abcdef.info --
    This file is not valid JSON.
    -- $WORK/badproxy/example.com/join/@v/list --
    v1.1.0
    -- $WORK/badproxy/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertFalse(StringUtil.isNumber("aaaBBBccc"));
            assertFalse(StringUtil.isNumber("0123456789"));
            assertFalse(StringUtil.isNumber(""));
            assertFalse(StringUtil.isNumber("01234abcdef"));
            assertFalse(StringUtil.isNumber("abcdef01234"));
        }
    
        /**
         *
         */
        @Test
        public void testIsEmpty() {
            assertTrue(StringUtil.isEmpty(null));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/cache.go

    		file, info, err := readDiskStat(ctx, r.path, rev)
    		if err == nil {
    			return info, err
    		}
    
    		info, err = r.repo(ctx).Stat(ctx, rev)
    		if err == nil {
    			// If we resolved, say, 1234abcde to v0.0.0-20180604122334-1234abcdef78,
    			// then save the information under the proper version, for future use.
    			if info.Version != rev {
    				file, _ = CachePath(ctx, module.Version{Path: r.path, Version: info.Version}, "info")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"%O", 01234, "0o1234"},
    	{"%O", -01234, "-0o1234"},
    	{"%o", ^uint32(0), "37777777777"},
    	{"%o", ^uint64(0), "1777777777777777777777"},
    	{"%#X", 0, "0X0"},
    	{"%x", 0x12abcdef, "12abcdef"},
    	{"%X", 0x12abcdef, "12ABCDEF"},
    	{"%x", ^uint32(0), "ffffffff"},
    	{"%X", ^uint64(0), "FFFFFFFFFFFFFFFF"},
    	{"%.20b", 7, "00000000000000000111"},
    	{"%10d", 12345, "     12345"},
    	{"%10d", -12345, "    -12345"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top