Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isWarnings (0.23 sec)

  1. samples/tlssurvey/build.gradle.kts

      implementation(libs.squareup.moshi)
      implementation(libs.squareup.moshi.kotlin)
    
      ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 08 02:48:17 UTC 2024
    - 617 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

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

            this.deprecation = deprecation;
        }
    
        /**
         * Tells whether to log warning messages. The default is {@code true}.
         */
        @Console
        public boolean isWarnings() {
            return warnings;
        }
    
        /**
         * Sets whether to log warning messages. The default is {@code true}.
         */
        public void setWarnings(boolean warnings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

            return problems.stream()
                .filter(problem -> !isWarning(problem))
                .map(TypeValidationProblemRenderer::renderMinimalInformationAbout)
                .collect(toImmutableSet());
        }
    
        private static boolean isWarning(Problem problem) {
            return problem.getDefinition().getSeverity().equals(Severity.WARNING);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

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