Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for inf (0.03 sec)

  1. src/math/cmplx/cmath_test.go

    		complex(inf, math.Pi)},
    	{complex(inf, 1.0),
    		complex(inf, zero)},
    	{complex(-inf, inf),
    		complex(inf, 3*math.Pi/4)},
    	{complex(inf, inf),
    		complex(inf, math.Pi/4)},
    	{complex(inf, nan),
    		complex(inf, nan)},
    	{complex(-inf, nan),
    		complex(inf, nan)},
    	{complex(nan, 1.0),
    		NaN()},
    	{complex(nan, inf),
    		complex(inf, nan)},
    	{NaN(),
    		NaN()},
    }
    var asinSC = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            run 'jar'
    
            then:
            def jar = new JarTestFixture(file('build/test.jar'))
            jar.assertContainsFile('META-INF/MANIFEST.MF')
            jar.assertContainsFile('META-INF/dir2/file2.xml')
            jar.assertContainsFile('META-INF/dir3/file2.txt')
            jar.assertContainsFile('META-INF/dir3/file2.xml')
            jar.assertContainsFile('dir1/file1.txt')
        }
    
        def usesManifestFromJarTaskWhenMergingJars() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

            1 * classLoader.getResources("META-INF/services/java.lang.CharSequence") >> Collections.enumeration([serviceFile1, serviceFile2])
            1 * classLoader.loadClass('org.gradle.ImplClass') >> String
            1 * classLoader.loadClass('org.gradle.ImplClass2') >> StringBuilder
            1 * classLoader2.getResources("META-INF/services/java.lang.CharSequence") >> Collections.enumeration([serviceFile3, serviceFile4])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            def url = writePluginProperties(TestPlugin1)
    
            given:
            classLoader.getResource("META-INF/gradle-plugins/org.gradle.somePlugin.properties") >> url
            classLoader.getResource("META-INF/gradle-plugins/somePlugin.properties") >> { throw new RuntimeException() }
            classLoader.loadClass(TestPlugin1.name) >> TestPlugin1
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

            }
            // WEB-INF/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/lib")),
                    "WEB-INF" + File.separator + "lib" + File.separator);
            // WEB-INF/env/crawler/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            given:
            project.file("src/main/application/META-INF").mkdirs()
            project.file("src/main/application/META-INF/application.xml").text = TEST_APP_XML
    
            when:
            project.pluginManager.apply(EarPlugin)
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    
            then:
            inEar("META-INF/application.xml").text == TEST_APP_XML
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top