- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 473 for warnings (0.28 seconds)
-
architecture/standards/0008-use-nullaway.md
Our codebase uses `null` extensively to represent an absence of value or optionality of the argument. We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us. However, the Java code we have is not fully annotated, which causes several consequences: * IDE warnings can be misleading * Redundant null checks may increase binary size, hurt performance, and increase cognitive load for readers
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/RemoveWarnings.java
private final Set<String> warnings; private String testName; /** * @param warnings The allowed warnings to inject */ public RemoveWarnings(Set<String> warnings) { this.warnings = warnings; } /** * @param warnings The allowed warnings to inject * @param testName The testName to inject */Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 15 08:50:42 GMT 2021 - 2.9K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java
if (!errors.contains(req.getMessage())) { errors.add(req.getMessage()); } break; case WARNING: if (!warnings.contains(req.getMessage())) { warnings.add(req.getMessage()); } break; default: throw new IllegalArgumentException("Unknown severity: " + req.getSeverity());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectWarnings.java
* @param testName The testName to inject */ public InjectWarnings(List<String> warnings, String testName) { this(false, warnings, testName); } /** * @param isRegex true is should inject the regex variant of warning * @param warnings The warnings to inject * @param testName The testName to inject */Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 3K bytes - Click Count (0) -
src/packaging/deb/lintian/fess
# Ignore arch dependent warnings, we chose the right libs on start fess binary: arch-independent-package-contains-binary-or-object # Not stripping external libraries fess binary: unstripped-binary-or-object # Ignore arch dependent warnings, we chose the right libs on start fess binary: arch-dependent-file-in-usr-share # Please check our changelog at https://github.com/codelibs/fess
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 10 01:24:02 GMT 2015 - 439 bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java
/** * @param allowedWarnings The allowed warnings to inject */ public InjectAllowedWarnings(List<String> allowedWarnings) { this(false, allowedWarnings); } /** * @param isRegex true if should inject the regex variant of allowed warnings * @param allowedWarnings The allowed warnings to inject */Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 15 08:50:42 GMT 2021 - 3.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 6.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt
val errors: List<ReportMessage>, val warnings: List<ReportMessage>, val information: List<ReportMessage>, val accepted: List<ReportMessage> ) { val isEmpty: Boolean get() = errors.isEmpty() && warnings.isEmpty() && information.isEmpty() fun toText() = StringBuilder("Binary compatibility\n").apply {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 2.3K bytes - Click Count (0) -
build-tools-internal/src/main/resources/eclipse.settings/org.eclipse.jdt.core.prefs
# org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=warning # org.eclipse.jdt.core.compiler.problem.nullReference=warning # org.eclipse.jdt.core.compiler.problem.nullSpecViolation=warning # org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning # org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 08 16:53:28 GMT 2021 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* * <p>This class ensures that the temporary file is deleted if it is not needed. * It uses a logger to log warnings if there are issues deleting the temporary file.</p> * * <p>Fields:</p> * <ul> * <li>{@code logger} - Logger instance for logging warnings.</li> * <li>{@code PREFIX} - Prefix for the temporary file name.</li> * <li>{@code SUFFIX} - Suffix for the temporary file name.</li>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 3.9K bytes - Click Count (0)