- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 29 for Sniffer (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/pom.xml
<!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI --> <test.include>%regex[.*.class]</test.include> <animal-sniffer-maven-plugin.version>1.27</animal-sniffer-maven-plugin.version> <asm.version>9.9.1</asm.version> <build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version> <caliper.version>1.0-beta-3</caliper.version>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Feb 17 19:12:41 GMT 2026 - 26.9K bytes - Click Count (0) -
android/guava/pom.xml
</executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration>Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 21:36:50 GMT 2025 - 9.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
checkArgument((extraCharacteristics & Spliterator.SORTED) != 0); } /* * @IgnoreJRERequirement should be redundant with the one on Streams itself, but it's necessary * as of Animal Sniffer 1.24. Maybe Animal Sniffer processes this nested class before it * processes Streams and thus hasn't had a chance to see Streams's annotation? */ @IgnoreJRERequirement
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 20.5K bytes - Click Count (0) -
okhttp/build.gradle.kts
"Bundle-SymbolicName: com.squareup.okhttp3", ) val androidSignature by configurations.getting val jvmSignature by configurations.getting val checkstyleConfig by configurations.getting // Animal Sniffer confirms we generally don't use APIs not on Java 8. configure<AnimalSnifferExtension> { annotation = "okhttp3.internal.SuppressSignatureCheck" defaultTargets("jvmMain", "debug") }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 11.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Comparators.java
} @IgnoreJRERequirement // helper for emptiesFirst+emptiesLast /* * If we make these calls inline inside the lambda inside emptiesFirst()/emptiesLast(), we get an * Animal Sniffer error, despite the @IgnoreJRERequirement annotation there. For details, see * ImmutableSortedMultiset. */ private static <T> @Nullable T orElseNull(Optional<T> optional) { return optional.orElse(null); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 11.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* the spliterator implementation. */ // @IgnoreJRERequirement is not necessary because this compiles down to a constant. // (which is fortunate because Animal Sniffer doesn't look for @IgnoreJRERequirement on fields) static final int SPLITERATOR_CHARACTERISTICS = Spliterator.IMMUTABLE | Spliterator.NONNULL | Spliterator.ORDERED; ImmutableCollection() {}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 21.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java
/* * If we make these calls inline inside toImmutableSortedMultiset, we get an Animal Sniffer error, * despite the @IgnoreJRERequirement annotation there. My assumption is that, because javac * generates a synthetic method for the body of the lambda, the actual method calls that Animal * Sniffer is flagging don't appear inside toImmutableSortedMultiset but rather inside that
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 35.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSet.java
public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements Set<E> { // @IgnoreJRERequirement is not necessary because this compiles down to a constant. // (which is fortunate because Animal Sniffer doesn't look for @IgnoreJRERequirement on fields) /** * Returns a {@code Collector} that accumulates the input elements into a new {@code
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Oct 11 14:54:00 GMT 2025 - 22.4K bytes - Click Count (0) -
gradle/libs.versions.toml
androidx-test-runner = { module = "androidx.test:runner", version.ref = "androidx-test-runner" } animalsniffer-annotations = { module = "org.codehaus.mojo:animal-sniffer-annotations", version.ref = "animalsniffer-annotations" } aqute-bnd = { module = "biz.aQute.bnd:biz.aQute.bnd", version.ref = "bnd" } aqute-resolve = { module = "biz.aQute.bnd:biz.aQute.resolve", version.ref = "bnd" }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertNotNull(actual, "Actual array is null but expected is not"); assertEquals("Array lengths differ", expected.length, actual.length); for (int i = 0; i < expected.length; i++) { assertEquals("Arrays differ at index " + i, expected[i], actual[i]); } } // Test implementation of FessUser interface
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.2K bytes - Click Count (0)