Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0x01234abc (0.14 sec)

  1. src/fmt/fmt_test.go

    	{"%020.8d", -1234, "           -00001234"},
    	{"%-20.8d", 1234, "00001234            "},
    	{"%-20.8d", -1234, "-00001234           "},
    	{"%-#20.8x", 0x1234abc, "0x01234abc          "},
    	{"%-#20.8X", 0x1234abc, "0X01234ABC          "},
    	{"%-#20.8o", 01234, "00001234            "},
    
    	// Test correct f.intbuf overflow checks.
    	{"%068d", 1, zeroFill("", 68, "1")},
    	{"%068d", -1, zeroFill("-", 67, "1")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

            CLASSPATH.visitChangesSince(previousFingerprint, currentFingerprint, "test", visitor)
            visitor.getChanges().toList()
        }
    
        def fingerprint(String normalizedPath, def hashCode = 0x1234abcd) {
            return new DefaultFileSystemLocationFingerprint(normalizedPath, FileType.RegularFile, TestHashCodes.hashCodeFrom((int) hashCode))
        }
    
        def jar(int hashCode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            strategy.visitChangesSince(previousFingerprint, currentFingerprint, "test", visitor)
            visitor.getChanges().toList()
        }
    
        def fingerprint(String normalizedPath, def hashCode = 0x1234abcd) {
            return new DefaultFileSystemLocationFingerprint(normalizedPath, FileType.RegularFile, TestHashCodes.hashCodeFrom((int) hashCode))
        }
    
        def added(String path) {
            added((path): path)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{"octal _", "{{print 0o_3_7_7}}", "255", tVal, true},
    	{"OCTAL", "{{print 0O377}}", "255", tVal, true},
    	{"hex", "{{print 0x123}}", "291", tVal, true},
    	{"hex _", "{{print 0x1_23}}", "291", tVal, true},
    	{"HEX", "{{print 0X123ABC}}", "1194684", tVal, true},
    	{"float", "{{print 123.4}}", "123.4", tVal, true},
    	{"float _", "{{print 0_0_1_2_3.4}}", "123.4", tVal, true},
    	{"hex float", "{{print +0x1.ep+2}}", "7.5", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	{"octal _", "{{print 0o_3_7_7}}", "255", tVal, true},
    	{"OCTAL", "{{print 0O377}}", "255", tVal, true},
    	{"hex", "{{print 0x123}}", "291", tVal, true},
    	{"hex _", "{{print 0x1_23}}", "291", tVal, true},
    	{"HEX", "{{print 0X123ABC}}", "1194684", tVal, true},
    	{"float", "{{print 123.4}}", "123.4", tVal, true},
    	{"float _", "{{print 0_0_1_2_3.4}}", "123.4", tVal, true},
    	{"hex float", "{{print +0x1.ep+2}}", "7.5", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top