Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for ORACLE (0.39 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                        <javaApiLinks>
                            <property>
                                <name>api_${jdkVersion}</name>
                                <value>http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/</value>
                            </property>
                        </javaApiLinks>
                        <excludePackageNames>junit.*,*.internal.*</excludePackageNames>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <javaApiLinks>
                            <property>
                                <name>api_${jdkVersion}</name>
                                <value>http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/</value>
                            </property>
                        </javaApiLinks>
                        <excludePackageNames>*.internal.*</excludePackageNames>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmInstallationMetadata.java

            }
    
            private String determineVendorName() {
                JvmVendor.KnownJvmVendor vendor = getVendor().getKnownVendor();
                if (vendor == JvmVendor.KnownJvmVendor.ORACLE) {
                    if (jvmName != null && jvmName.contains("OpenJDK")) {
                        return "OpenJDK";
                    }
                }
                return getVendor().getDisplayName();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       * Atomically sets the element at position {@code i} to the given updated value if the current
       * value is <a href="#bitEquals">bitwise equal</a> to the expected value.
       *
       * <p>May <a
       * href="http://download.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/package-summary.html#Spurious">
       * fail spuriously</a> and does not provide ordering guarantees, so is only rarely an appropriate
       * alternative to {@code compareAndSet}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K 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. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

           *
           * Android API level 26 and JVM8 both let our Error propagate directly the first time and
           * throw NoClassDefFoundError thereafter. This is the proper behavior according to the spec.
           * See https://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.4.2 (steps #11 and
           * #5).
           *
           * Note that that "first time" might happen in a test other than
           * testLexicographicalComparatorChoice!
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top