Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for ORACLE (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/crypto/tls/cipher_suites.go

    //     are fundamentally fragile, and suffered from an endless sequence of
    //     padding oracle attacks. See https://eprint.iacr.org/2015/1129,
    //     https://www.imperialviolet.org/2014/12/08/poodleagain.html, and
    //     https://blog.cloudflare.com/yet-another-padding-oracle-in-openssl-cbc-ciphersuites/.
    //
    //   - AES comes before ChaCha20
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=task-capture-stdout]"]
    ====
    
    Gradle also integrates with the [Java Util Logging](https://docs.oracle.com/javase/8/docs/api/java/util/logging/package-summary.html), Jakarta Commons Logging and [Log4j](https://logging.apache.org/log4j/2.x/) logging toolkits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top