- Sort Score
- Result 10 results
- Languages All
Results 2601 - 2610 of 3,989 for Null (0.07 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/NotifierTest.java
* */ class NotifierTest { @Test void testHashCodeNullSafe() { new Notifier().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Notifier().equals(null)); new Notifier().equals(new Notifier()); } @Test void testEqualsIdentity() { Notifier thing = new Notifier(); assertTrue(thing.equals(thing)); } @Test
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/PluginExecutionTest.java
class PluginExecutionTest { @Test void testHashCodeNullSafe() { new PluginExecution().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new PluginExecution().equals(null)); new PluginExecution().equals(new PluginExecution()); } @Test void testEqualsIdentity() { PluginExecution thing = new PluginExecution(); assertTrue(thing.equals(thing));
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/PluginManagementTest.java
class PluginManagementTest { @Test void testHashCodeNullSafe() { new PluginManagement().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new PluginManagement().equals(null)); new PluginManagement().equals(new PluginManagement()); } @Test void testEqualsIdentity() { PluginManagement thing = new PluginManagement(); assertTrue(thing.equals(thing));
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/ReportSetTest.java
* */ class ReportSetTest { @Test void testHashCodeNullSafe() { new ReportSet().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new ReportSet().equals(null)); new ReportSet().equals(new ReportSet()); } @Test void testEqualsIdentity() { ReportSet thing = new ReportSet(); assertTrue(thing.equals(thing)); } @Test
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/RepositoryTest.java
*/ class RepositoryTest { @Test void testHashCodeNullSafe() { new Repository().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Repository().equals(null)); new Repository().equals(new Repository()); } @Test void testEqualsIdentity() { Repository thing = new Repository(); assertTrue(thing.equals(thing)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 3.9K bytes - Viewed (0) -
internal/ioutil/discard.go
// io.Writer implementation alone avoids also unnecessary buffer copies, // and as such incurred latencies. var Discard io.Writer = discard{} // discard is /dev/null for Golang. type discard struct{} func (discard) Write(p []byte) (int, error) { return len(p), nil } // DiscardReader discarded reader func DiscardReader(r io.Reader) { Copy(Discard, r)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Nov 06 22:26:08 UTC 2023 - 1.3K bytes - Viewed (0) -
test-site/app/controllers/Suggest.java
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Nov 06 08:48:32 UTC 2015 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
public class JobProcess { protected Process process; protected InputStreamThread inputStreamThread; public JobProcess(final Process process) { this(process, InputStreamThread.MAX_BUFFER_SIZE, null); } public JobProcess(final Process process, final int bufferSize, final Consumer<String> outputCallback) { this.process = process;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ForwardingRequestBody.kt
return delegate.isDuplex() } override fun toString(): String { return javaClass.simpleName + "(" + delegate.toString() + ")" } init { requireNotNull(delegate) { "delegate == null" } this.delegate = delegate }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0)