Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getAutoTargetJvmDisabled (0.34 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/NaggingJavaPluginConvention.java

        public void disableAutoTargetJvm() {
            logDeprecation();
            delegate.disableAutoTargetJvm();
        }
    
        @Override
        public boolean getAutoTargetJvmDisabled() {
            logDeprecation();
            return delegate.getAutoTargetJvmDisabled();
        }
    
        File getReportsDir() {
            logDeprecation();
            return delegate.getReportsDir();
        }
    
        @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginConvention.java

        }
    
        @Override
        public void disableAutoTargetJvm() {
            extension.disableAutoTargetJvm();
        }
    
        @Override
        public boolean getAutoTargetJvmDisabled() {
            return extension.getAutoTargetJvmDisabled();
        }
    
        File getReportsDir() {
            // This became public API by accident as Groovy has access to private methods and we show an example in our docs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmLanguageUtilities.java

            assert !compileTasks.isEmpty();
    
            if (!configuration.isCanBeConsumed() && java.getAutoTargetJvmDisabled()) {
                return Integer.MAX_VALUE;
            }
    
            return compileTasks.stream().map(provider -> {
                COMPILE compileTask = provider.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:47:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

         * same (or compatible) level as the target compatibility of this module.
         *
         * @since 5.3
         */
        public abstract boolean getAutoTargetJvmDisabled();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * will not automatically try to get dependencies corresponding to the
         * same (or compatible) level as the target compatibility of this module.
         *
         * @since 7.1
         */
        boolean getAutoTargetJvmDisabled();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            return sourceSets;
        }
    
        @Override
        public void disableAutoTargetJvm() {
            this.autoTargetJvm = false;
        }
    
        @Override
        public boolean getAutoTargetJvmDisabled() {
            return !autoTargetJvm;
        }
    
        /**
         * @implNote throws an exception if used when multiple {@link JvmSoftwareComponentInternal} components are present.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.plugins.JavaApplication.getExecutableDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (JavaApplication.java:0)
    Method <org.gradle.api.plugins.JavaPluginConvention.getAutoTargetJvmDisabled()> does not have raw return type assignable to org.gradle.api.provider.Provider in (JavaPluginConvention.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top