Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 3_4 (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/VersionNumberTest.groovy

            patchScheme.parse("1.2.3") == new VersionNumber(1, 2, 3, null)
            patchScheme.parse("1.2.3.4") == new VersionNumber(1, 2, 3, 4, null)
            patchScheme.parse("1.2.3_4") == new VersionNumber(1, 2, 3, 4, null)
            patchScheme.parse("1.2.3.4-qualifier") == new VersionNumber(1, 2, 3, 4, "qualifier")
            patchScheme.parse("1.2.3.4.qualifier") == new VersionNumber(1, 2, 3, 4, "qualifier")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:04 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. src/html/template/template_test.go

    		t.Errorf("AddParseTree: %v\nwanted error about already having Executed", err)
    	}
    }
    
    func TestNumbers(t *testing.T) {
    	c := newTestCase(t)
    	c.mustParse(c.root, `{{print 1_2.3_4}} {{print 0x0_1.e_0p+02}}`)
    	c.mustExecute(c.root, nil, "12.34 7.5")
    }
    
    func TestStringsInScriptsWithJsonContentTypeAreCorrectlyEscaped(t *testing.T) {
    	// See #33671 and #37634 for more context on this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top