Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setDebugLevel (0.12 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         *
         * <p>Setting this value to null will reset the property to its default value of only
         * generating line and source debug information.</p>
         */
        public void setDebugLevel(@Nullable String debugLevel) {
            this.debugLevel = debugLevel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        public void setUnchecked(boolean unchecked) {
            this.unchecked = unchecked;
        }
    
        @Nullable
        public String getDebugLevel() {
            return debugLevel;
        }
    
        public void setDebugLevel(@Nullable String debugLevel) {
            this.debugLevel = debugLevel;
        }
    
        public boolean isOptimize() {
            return optimize;
        }
    
        public void setOptimize(boolean optimize) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

         * Legal values: none, source, line, vars, notailcalls
         */
        @Nullable
        @Optional
        @Input
        public String getDebugLevel() {
            return debugLevel;
        }
    
        public void setDebugLevel(@Nullable String debugLevel) {
            this.debugLevel = debugLevel;
        }
    
        /**
         * Run optimizations.
         */
        @Input
        public boolean isOptimize() {
            return optimize;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top