- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for suppress (0.04 seconds)
-
architecture/standards/0008-use-nullaway.md
Do not suppress NullAway errors without a justification. Prefer rearranging the code to avoid the error, unless there is a provable performance penalty or a significant loss of code readability. Use `Objects.requireNonNull` statement or `Preconditions` rather than `assert` or `@SuppressWarning` annotation to suppress if possible. For gradual adoption, enable checks project-by-project.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 11 10:24:40 GMT 2025 - 4K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
) } private fun findLatest(name: String, notation: String, dest: Properties) { val libDependencies = arrayOf(project.dependencies.create(notation)) @Suppress("SpreadOperator") val templateVersionConfiguration = project.configurations.detachedConfiguration(*libDependencies) templateVersionConfiguration.resolutionStrategy.componentSelection.all {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Nov 24 20:45:41 GMT 2025 - 5K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
}) } fun configureSourcesVariant() { java { withSourcesJar() } // TODO: This should not be necessary anymore now that we have variant reselection. @Suppress("UnusedPrivateProperty") val transitiveSourcesElements by configurations.creating { isCanBeResolved = false isCanBeConsumed = true extendsFrom(configurations.implementation.get())
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 19 06:44:41 GMT 2025 - 18.9K bytes - Click Count (0) -
android/pom.xml
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.4K bytes - Click Count (0) -
pom.xml
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
// DoNotCall wants this to be final, but we want to override it to return more specific types. // Inheritance is closed, and all subtypes are @DoNotCall, so this is safe to suppress. @SuppressWarnings("DoNotCall") public ImmutableCollection<V> removeAll(@Nullable Object key) { throw new UnsupportedOperationException(); } /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 28.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableMultimap.java
// DoNotCall wants this to be final, but we want to override it to return more specific types. // Inheritance is closed, and all subtypes are @DoNotCall, so this is safe to suppress. @SuppressWarnings("DoNotCall") public ImmutableCollection<V> removeAll(@Nullable Object key) { throw new UnsupportedOperationException(); } /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 27.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
((EsAbstractEntity) entity).asDocMeta().id(itemResponse.getId()); } results[i] = itemResponse.isFailed() ? 0 : 1; } return results; } // to suppress xacceptUpdateColumnModifiedPropertiesIfNeeds()'s specify process @Override protected UpdateOption<CB> createPlainUpdateOption() { UpdateOption<CB> updateOption = new UpdateOption<CB>();
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
((EsAbstractEntity) entity).asDocMeta().id(itemResponse.getId()); } results[i] = itemResponse.isFailed() ? 0 : 1; } return results; } // to suppress xacceptUpdateColumnModifiedPropertiesIfNeeds()'s specify process @Override protected UpdateOption<CB> createPlainUpdateOption() { UpdateOption<CB> updateOption = new UpdateOption<CB>();
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 26.4K bytes - Click Count (0)