- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 7,694 for thinsp (0.06 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
import java.util.Collection; import java.util.List; import java.util.Map; import org.checkerframework.checker.nullness.qual.Nullable; /** * To be implemented by test generators of things that can contain elements. Such things include * both {@link Collection} and {@link Map}; since there isn't an established collective noun that * encompasses both of these, 'container' is used. * * @author George van den Driessche */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 16:49:06 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/en/docs/advanced/events.md
The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:36:22 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
private int nextNameTrnId = 0; private int[] resolveOrder; InetAddress laddr, baddr; NameServiceClient() { this( LPORT, LADDR ); } NameServiceClient( int lport, InetAddress laddr ) { this.lport = lport; this.laddr = laddr; try { baddr = Config.getInetAddress( "jcifs.smb1.netbios.baddr",
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 17.4K bytes - Viewed (0) -
guava/pom.xml
<!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. --> <offlineLink> <url>https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</url>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 18:53:31 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/DependencyTest.java
assertFalse(new Dependency().equals(null)); new Dependency().equals(new Dependency()); } @Test void testEqualsIdentity() { Dependency thing = new Dependency(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Dependency().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/DistributionManagementTest.java
new DistributionManagement().equals(new DistributionManagement()); } @Test void testEqualsIdentity() { DistributionManagement thing = new DistributionManagement(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new DistributionManagement().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ExclusionTest.java
assertFalse(new Exclusion().equals(null)); new Exclusion().equals(new Exclusion()); } @Test void testEqualsIdentity() { Exclusion thing = new Exclusion(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Exclusion().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginTest.java
assertFalse(new Plugin().equals(null)); new Plugin().equals(new Plugin()); } @Test void testEqualsIdentity() { Plugin thing = new Plugin(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Plugin().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ProfileTest.java
assertFalse(new Profile().equals(null)); new Profile().equals(new Profile()); } @Test void testEqualsIdentity() { Profile thing = new Profile(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new Profile().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/RepositoryPolicyTest.java
new RepositoryPolicy().equals(new RepositoryPolicy()); } @Test void testEqualsIdentity() { RepositoryPolicy thing = new RepositoryPolicy(); assertTrue(thing.equals(thing)); } @Test void testToStringNullSafe() { assertNotNull(new RepositoryPolicy().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0)