Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isDeprecation (0.18 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        public MinimalScalaCompileOptions(BaseScalaCompileOptions compileOptions) {
            this.failOnError = compileOptions.isFailOnError();
            this.deprecation = compileOptions.isDeprecation();
            this.unchecked = compileOptions.isUnchecked();
            this.debugLevel = compileOptions.getDebugLevel();
            this.optimize = compileOptions.isOptimize();
            this.encoding = compileOptions.getEncoding();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

            this.debugOptions = compileOptions.getDebugOptions();
            this.debug = compileOptions.isDebug();
            this.deprecation = compileOptions.isDeprecation();
            this.failOnError = compileOptions.isFailOnError();
            this.listFiles = compileOptions.isListFiles();
            this.verbose = compileOptions.isVerbose();
            this.warnings = compileOptions.isWarnings();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerArgumentsGenerator.java

        public List<String> generate(ScalaCompileSpec spec) {
            List<String> result = new ArrayList<>();
    
            MinimalScalaCompileOptions options = spec.getScalaCompileOptions();
            addFlag("-deprecation", options.isDeprecation(), result);
            addFlag("-unchecked", options.isUnchecked(), result);
            addConcatenatedOption("-g:", options.getDebugLevel(), result);
            addFlag("-optimise", options.isOptimize(), result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

        private String top;
        private String bottom;
        private List<String> additionalParameters;
    
        /**
         * Tells whether to generate deprecation information.
         */
        @Input
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to generate deprecation information.
         */
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        /**
         * Generate deprecation information.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Generate unchecked information.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

                if (isScala3) {
                    parameters.getSources().from(getFilteredCompilationOutputs());
                } else {
                    parameters.getSources().from(getSource());
    
                    if (options.isDeprecation()) {
                        parameters.getOptions().add("-deprecation");
                    }
    
                    if (options.isUnchecked()) {
                        parameters.getOptions().add("-unchecked");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                args.add("-d");
                args.add(destinationDir.getPath());
            }
            if (compileOptions.isVerbose()) {
                args.add("-verbose");
            }
            if (compileOptions.isDeprecation()) {
                args.add("-deprecation");
            }
            if (!compileOptions.isWarnings()) {
                args.add("-nowarn");
            }
            if (compileOptions.getEncoding() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.listFiles = listFiles;
        }
    
        /**
         * Tells whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.compile.CompileOptions.isDebug()> does not have raw return type assignable to org.gradle.api.provider.Property in (CompileOptions.java:0)
    Method <org.gradle.api.tasks.compile.CompileOptions.isDeprecation()> does not have raw return type assignable to org.gradle.api.provider.Property in (CompileOptions.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