Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jdkType (0.07 sec)

  1. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customModule.xml

        <component name="NewModuleRootManager">
            <output url="file://$MODULE_DIR$/out"/>
            <output-test url="file://$MODULE_DIR$/outTest"/>
            <exclude-output/>
            <orderEntry type="jdk" jdkName="1.6" jdkType="JavaSDK" />
            <content url="file://$MODULE_DIR$">
                <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/JdkFallbackHelper.java

    public class JdkFallbackHelper {
    
        public static <T> T newInstanceOrFallback(String jdk7Type, ClassLoader loader, Class<? extends T> fallbackType) {
            // Use java 7 APIs, if available
            Class<?> handlerClass = null;
            if (JavaVersion.current().isJava7Compatible()) {
                try {
                    handlerClass = loader.loadClass(jdk7Type);
                } catch (ClassNotFoundException e) {
                    // Ignore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top