Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 489 for INF (1.53 sec)

  1. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    1.class package com.example.goodbye; synchronized class GoodbyePlugin$1 implements org.gradle.api.Action { void GoodbyePlugin$1(GoodbyePlugin); public void execute(org.gradle.api.Task); } META-INF/gradle-plugins/com.example.goodbye.properties implementation-class=com.example.goodbye.GoodbyePlugin META-INF/gradle-plugins/com.example.hello.properties implementation-class=com.example.hello.HelloPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6WtpComponent.xml

    		<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/java"/>
    		<wb-resource deploy-path="/" source-path="src/main/webapp"/>
    		<dependent-module archiveName="common-1.0.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/common/common">
    			<dependency-type>uses</dependency-type>
    		</dependent-module>
    		<dependent-module archiveName="api-1.0.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/api/api">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 19:33:30 UTC 2023
    - 719 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/pluginVersions/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    1.class package com.example.goodbye; synchronized class GoodbyePlugin$1 implements org.gradle.api.Action { void GoodbyePlugin$1(GoodbyePlugin); public void execute(org.gradle.api.Task); } META-INF/gradle-plugins/com.example.goodbye.properties implementation-class=com.example.goodbye.GoodbyePlugin META-INF/gradle-plugins/com.example.hello.properties implementation-class=com.example.hello.HelloPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryIntegrationTest.groovy

            then:
            jansiLibrary.platform == JansiOperatingSystemSupport.MAC_OS_X.identifier
            jansiLibrary.filename == MAC_OSX_LIB_FILENAME
            jansiLibrary.resourcePath ==  "/META-INF/native/" + jansiLibrary.path
        }
    
        @Requires(UnitTestPreconditions.Linux)
        def "jansi library can be created for Linux"() {
            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/build.gradle.kts

    tasks.war {
        webAppDirectory = file("src/main/webapp")
        from("src/rootContent") // adds a file-set to the root of the archive
        webInf { from("src/additionalWebInf") } // adds a file-set to the WEB-INF dir.
        webXml = file("src/someWeb.xml") // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 543 bytes
    - Viewed (0)
  6. src/math/cmplx/pow.go

    //	Pow(0, c) for real(c)<0 returns Inf+0i if imag(c) is zero, otherwise Inf+Inf i.
    func Pow(x, y complex128) complex128 {
    	if x == 0 { // Guaranteed also true for x == -0.
    		if IsNaN(y) {
    			return NaN()
    		}
    		r, i := real(y), imag(y)
    		switch {
    		case r == 0:
    			return 1
    		case r < 0:
    			if i == 0 {
    				return complex(math.Inf(1), 0)
    			}
    			return Inf()
    		case r > 0:
    			return 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/minmax_test.go

    	zero    = math.Copysign(0, +1)
    	negZero = math.Copysign(0, -1)
    	inf     = math.Inf(+1)
    	negInf  = math.Inf(-1)
    	nan     = math.NaN()
    )
    
    var tests = []struct{ min, max float64 }{
    	{1, 2},
    	{-2, 1},
    	{negZero, zero},
    	{zero, inf},
    	{negInf, zero},
    	{negInf, inf},
    	{1, inf},
    	{negInf, 1},
    }
    
    var all = []float64{1, 2, -1, -2, zero, negZero, inf, negInf, nan}
    
    func eq(x, y float64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 01:41:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort_test.go

    		"3:foo 7:bar",
    	},
    	{
    		map[float64]string{7: "bar", -3: "foo", math.NaN(): "nan", math.Inf(0): "inf"},
    		"NaN:nan -3:foo 7:bar +Inf:inf",
    	},
    	{
    		map[complex128]string{7 + 2i: "bar2", 7 + 1i: "bar", -3: "foo", complex(math.NaN(), 0i): "nan", complex(math.Inf(0), 0i): "inf"},
    		"(NaN+0i):nan (-3+0i):foo (7+1i):bar (7+2i):bar2 (+Inf+0i):inf",
    	},
    	{
    		map[bool]string{true: "true", false: "false"},
    		"false:false true:true",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

        earlib(group = "log4j", name = "log4j", version = "1.2.15", ext = "jar")
    }
    
    tasks.ear {
        appDirectory = file("src/main/app")  // use application metadata found in this folder
        libDirName = "APP-INF/lib" // put dependent libraries into APP-INF/lib inside the generated EAR
        deploymentDescriptor {  // custom entries for application.xml:
    //      fileName = "application.xml"  // same as the default value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/math/big/floatconv.go

    // defined if an error is reported.
    func (z *Float) Parse(s string, base int) (f *Float, b int, err error) {
    	// scan doesn't handle ±Inf
    	if len(s) == 3 && (s == "Inf" || s == "inf") {
    		f = z.SetInf(false)
    		return
    	}
    	if len(s) == 4 && (s[0] == '+' || s[0] == '-') && (s[1:] == "Inf" || s[1:] == "inf") {
    		f = z.SetInf(s[0] == '-')
    		return
    	}
    
    	r := strings.NewReader(s)
    	if f, b, err = z.scan(r, base); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top