Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 770 for inf (0.04 sec)

  1. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def ear = new JarTestFixture(file('build/libs/root.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
            ear.assertContainsFile("META-INF/application.xml")
            def appXml = new XmlSlurper().parse(file('unzipped/META-INF/application.xml'))
            def module = appXml.module[0].web
            module."web-uri" == "root.war"
            module."context-root" == "anywhere"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('META-INF/MANIFEST.MF')
            war.assertContainsFile('META-INF/metainf1/file2.txt')
            war.assertContainsFile('content1/file1.jsp')
            war.assertContainsFile('WEB-INF/lib/lib.jar')
            war.assertContainsFile('WEB-INF/classes/org/gradle/resource.txt')
            war.assertContainsFile('WEB-INF/classes/org/gradle/Person.class')
            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/math/pow_s390x.s

    //      Pow(x, NaN) = NaN
    //      Pow(±0, y) = ±Inf for y an odd integer < 0
    //      Pow(±0, -Inf) = +Inf
    //      Pow(±0, +Inf) = +0
    //      Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
    //      Pow(±0, y) = ±0 for y an odd integer > 0
    //      Pow(±0, y) = +0 for finite y > 0 and not an odd integer
    //      Pow(-1, ±Inf) = 1
    //      Pow(x, +Inf) = +Inf for |x| > 1
    //      Pow(x, -Inf) = +0 for |x| > 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/math/floor.go

    //
    // Special cases are:
    //
    //	Ceil(±0) = ±0
    //	CeilInf) = ±Inf
    //	Ceil(NaN) = NaN
    func Ceil(x float64) float64 {
    	if haveArchCeil {
    		return archCeil(x)
    	}
    	return ceil(x)
    }
    
    func ceil(x float64) float64 {
    	return -Floor(-x)
    }
    
    // Trunc returns the integer value of x.
    //
    // Special cases are:
    //
    //	Trunc(±0) = ±0
    //	TruncInf) = ±Inf
    //	Trunc(NaN) = NaN
    func Trunc(x float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. src/math/dim.go

    package math
    
    // Dim returns the maximum of x-y or 0.
    //
    // Special cases are:
    //
    //	Dim(+Inf, +Inf) = NaN
    //	Dim(-Inf, -Inf) = NaN
    //	Dim(x, NaN) = Dim(NaN, x) = NaN
    func Dim(x, y float64) float64 {
    	// The special cases result in NaN after the subtraction:
    	//      +Inf - +Inf = NaN
    	//      -Inf - -Inf = NaN
    	//       NaN - y    = NaN
    	//         x - NaN  = NaN
    	v := x - y
    	if v <= 0 {
    		// v is negative or 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 15 19:45:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/strconv/atof_test.go

    	{"2e308", "+Inf", ErrRange},
    	{"1e309", "+Inf", ErrRange},
    	{"0x1p1025", "+Inf", ErrRange},
    
    	// way too large
    	{"1e310", "+Inf", ErrRange},
    	{"-1e310", "-Inf", ErrRange},
    	{"1e400", "+Inf", ErrRange},
    	{"-1e400", "-Inf", ErrRange},
    	{"1e400000", "+Inf", ErrRange},
    	{"-1e400000", "-Inf", ErrRange},
    	{"0x1p1030", "+Inf", ErrRange},
    	{"0x1p2000", "+Inf", ErrRange},
    	{"0x1p2000000000", "+Inf", ErrRange},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp

                key="labels.access_token_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_details.jsp

                key="labels.key_match_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="crawl"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  9. src/math/pow.go

    //	Pow(x, NaN) = NaN
    //	Pow(±0, y) = ±Inf for y an odd integer < 0
    //	Pow(±0, -Inf) = +Inf
    //	Pow(±0, +Inf) = +0
    //	Pow(±0, y) = +Inf for finite y < 0 and not an odd integer
    //	Pow(±0, y) = ±0 for y an odd integer > 0
    //	Pow(±0, y) = +0 for finite y > 0 and not an odd integer
    //	Pow(-1, ±Inf) = 1
    //	Pow(x, +Inf) = +Inf for |x| > 1
    //	Pow(x, -Inf) = +0 for |x| > 1
    //	Pow(x, +Inf) = +0 for |x| < 1
    //	Pow(x, -Inf) = +Inf for |x| < 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WtpComponentTest.groovy

            component.wbModuleEntries as Set == [
                    new WbDependentModule('foo-1.2.3.jar', '/WEB-INF/lib', "module:/classpath/foo-1.2.3.jar"),
                    new WbResource("/WEB-INF/classes", "src/main/java"),
                    new WbResource("/WEB-INF/classes", "src/other/java")] as Set
        }
    
        def "load defaults"() {
            when:
            component.loadDefaults()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top