Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for 0_202 (0.04 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

        def "reports toolchains in right order"() {
            given:
            defineJdks(
                jdk("14", "+2", "14"),
                jdk("15-ea", "+2", "15"),
                jdk("9", "+2", "15"),
                jdk("1.8.0_202", "-b01", "1.8.0_202"),
                jdk("1.8.0_404", "-b01", "1.8.0_404")
            )
            toolchainConfiguration.isAutoDetectEnabled() >> true
            toolchainConfiguration.isDownloadEnabled() >> true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

                "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                "${Attributes.Name.IMPLEMENTATION_VERSION}": "1.0",
    
                "org/gradle/api": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ],
                "org/gradle/base": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ]
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

            def propertiesEntry1 = contextFor(context, 'some/path/to/foo.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry2 = contextFor(context, 'some/path/to/bar.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry3 = contextFor(context, 'some/other/path/to/fuzz.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
    
            def hash1 = unfilteredHasher.hash(propertiesEntry1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset_test.go

    			set: &utilipset.IPSet{
    				Name: "abz",
    			},
    			setType:         utilipset.HashIPPort,
    			ipv6:            true,
    			activeEntries:   []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    			currentEntries:  []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    			expectedEntries: []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    		},
    		{
    			name: "ipset sync with updated udp->tcp in hash",
    			set: &utilipset.IPSet{
    				Name: "bca",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/17195")
        def "uses most recent version of multiple matches if version has a legacy format"() {
            given:
            def queryService = setupInstallations(["1.8.0_282", "1.8.0_292"])
            def versionToFind = JavaLanguageVersion.of(8)
    
            when:
            def filter = createSpec()
            filter.languageVersion.set(versionToFind)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.groovy

            given:
            def jarfile = tmpDir.file("test.jar")
            createJarWithBuildInfo(jarfile, ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)", "foo": "true"], "Build information 1.0")
    
            def jarfile2 = tmpDir.file("test2.jar")
            createJarWithBuildInfo(jarfile2, ["created-by": "1.8.0_232-b15 (Azul Systems, Inc.)", "foo": "true"], "Build information 1.1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainTest.groovy

            javaToolchain.javaRuntimeVersion == runtimeVersion
            javaToolchain.jvmVersion == jvmVersion
    
            where:
            javaVersion | runtimeVersion  | jvmVersion   | languageVersion
            "1.8.0_292" | "1.8.0_292-b10" | "25.292-b10" | 8
            "11.0.11"   | "11.0.9+11"     | "11.0.9+11"  | 11
            "16"        | "16+36"         | "16+36"      | 16
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            jvm.standaloneJre == jreDir
            jvm.jre == jvm.standaloneJre
    
            where:
            version    | jreDirName    | jdkDirName
            '1.6.0'    | 'jre6'        | 'jdk1.6.0'
            '1.5.0_22' | 'jre1.5.0_22' | 'jdk1.5.0_22'
        }
    
        def "locates JDK and JRE installs for a typical Java 8 JDK installation on Windows"() {
            given:
            TestFile software = tmpDir.createDir('software')
            software.create {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/FileMetadataTestFixture.groovy

            // For example, Oracle JDK 1.8.0_181-b13 does not capture milliseconds, while OpenJDK 1.8.0_242-b08 does.
            return (JavaVersion.current().java9Compatible || OperatingSystem.current().windows)
                ? lastModified
                : lastModified.intdiv(1000) * 1000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 04 02:08:21 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/version_windows_test.go

    package windows_test
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"syscall"
    	"testing"
    )
    
    func TestSupportUnixSocket(t *testing.T) {
    	var d syscall.WSAData
    	if err := syscall.WSAStartup(uint32(0x202), &d); err != nil {
    		t.Fatal(err)
    	}
    	defer syscall.WSACleanup()
    
    	// Test that SupportUnixSocket returns true if WSASocket succeeds with AF_UNIX.
    	got := windows.SupportUnixSocket()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:24:57 UTC 2024
    - 874 bytes
    - Viewed (0)
Back to top