Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for ORACLE (0.14 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            'oracleJre4'     | oracleJvm('4')           | JavaVersion.VERSION_1_4 | 'Oracle JRE 4'               | true
            'oracleJdk5'     | oracleJvm('5')           | JavaVersion.VERSION_1_5 | 'Oracle JDK 5'               | false
            'oracleJdk6'     | oracleJvm('6')           | JavaVersion.VERSION_1_6 | 'Oracle JDK 6'               | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

                    }
                }
    
                tasks.register('oracle', Oracle)
            """
    
            when:
            configurationCacheRun 'oracle'
    
            then:
            output.count('Thinking...') == 1
    
            when:
            configurationCacheRun 'oracle'
    
            then:
            output.count('Thinking...') == 0
            outputContains 'The answer is 42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

            '/opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/java' | '/opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/jstack'
            '/opt/jdk/oracle-jdk-8/bin/java'                           | '/opt/jdk/oracle-jdk-8/bin/jstack'
            '/opt/jdk/oracle-jdk-8/jre/bin/java'                       | '/opt/jdk/oracle-jdk-8/bin/jstack'
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def 'can locate jstack on Windows'() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    When we apply the above rules to sort this set we will end up with following ordering:
    
    . Microsoft JDK 17.0.1
    . Microsoft JDK 17.0.0
    . Oracle JDK v17.0.0
    . Microsoft JRE v17.0.1
    . Oracle JRE v17.0.1
    
    Gradle prefers JDKs over JREs, so the JREs come last.
    Gradle prefers the Microsoft vendor over Oracle, so the Microsoft installations come first.
    Gradle prefers higher version numbers, so JDK 17.0.1 comes before JDK 17.0.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

         */
        const val RUN_BROKEN_CONFIGURATION_CACHE_DOCS_TESTS = "runBrokenConfigurationCacheDocsTests"
    
        internal
        val VENDOR_MAPPING = mapOf(
            "oracle" to JvmVendorSpec.ORACLE,
            "openjdk" to JvmVendorSpec.ADOPTIUM,
            "zulu" to JvmVendorSpec.AZUL
        )
    }
    
    
    fun Project.stringPropertyOrEmpty(projectPropertyName: String): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    #
    
    Certain source files distributed by Oracle America, Inc. and/or its
    affiliates are subject to the following clarification and special
    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    | yes
    | This configuration contains the test runtime classpath of this library
    |===
    
    [[sec:java_library_modular]]
    == Building Modules for the Java Module System
    
    Since Java 9, Java itself offers a https://www.oracle.com/corporate/features/understanding-java-9-modules.html[module system] that allows for strict encapsulation during compile and runtime.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

    import java.lang.reflect.Method
    import java.lang.reflect.Modifier.isPrivate
    import java.lang.reflect.Modifier.isStatic
    
    
    /**
     * Allows objects that support the [Java Object Serialization](https://docs.oracle.com/javase/8/docs/platform/serialization/spec/serialTOC.html)
     * protocol to be stored in the configuration cache.
     *
     * The implementation is currently limited to serializable classes that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            }
        }
    
        static final class JdkOracle implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                System.getProperty('java.vm.vendor') == 'Oracle Corporation'
            }
        }
    
        static final class KotlinOnlySupportsJdk21Earlier implements TestPrecondition {
            @Override
            boolean isSatisfied() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa.go

    	//
    	//    SHA2-512(priv.D || entropy || hash)[:32]
    	//
    	// The CSPRNG key is indifferentiable from a random oracle as shown in
    	// [Coron], the AES-CTR stream is indifferentiable from a random oracle
    	// under standard cryptographic assumptions (see [Larsson] for examples).
    	//
    	// [Coron]: https://cs.nyu.edu/~dodis/ps/merkle.pdf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top