- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 3,432 for NULL (0.08 sec)
- 
				
				src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java} @Test @DisplayName("should handle null policy handle") void testNullPolicyHandleHandled() { // Act & Assert - The constructor accepts null policy handle without throwing assertDoesNotThrow(() -> new MsrpcSamrConnect2("\\\\srv", 0, null)); } @Test @DisplayName("should handle empty string as system name")Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/job/CrawlJobTest.java// Helper method to compare arrays private void assertArrayEquals(String[] expected, String[] actual) { if (expected == null && actual == null) { return; } if (expected == null || actual == null) { fail("Arrays are not equal: one is null"); } assertEquals("Array lengths differ", expected.length, actual.length); for (int i = 0; i < expected.length; i++) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0)
- 
				
				android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java* Equivalent to {@link #expectMissing(Object[]) expectMissing}{@code (null)} except that the call * to {@code contains(null)} is permitted to throw a {@code NullPointerException}. * * @param message message to use upon assertion failure */ protected void expectNullMissingWhenNullUnsupported(String message) { try { assertFalse(message, actualContents().contains(null)); } catch (NullPointerException tolerated) {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 2.8K bytes - Viewed (0)
- 
				
				guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java* Equivalent to {@link #expectMissing(Object[]) expectMissing}{@code (null)} except that the call * to {@code contains(null)} is permitted to throw a {@code NullPointerException}. * * @param message message to use upon assertion failure */ protected void expectNullMissingWhenNullUnsupported(String message) { try { assertFalse(message, actualContents().contains(null)); } catch (NullPointerException tolerated) {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 2.8K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.javaassertEquals(0L, searchRenderData.getRequestedTime()); assertNull(searchRenderData.getQueryId()); } public void test_setAndGetDocumentItems() { // Test with null searchRenderData.setDocumentItems(null); assertNull(searchRenderData.getDocumentItems()); // Test with empty list List<Map<String, Object>> emptyList = new ArrayList<>(); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0)
- 
				
				mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.ktRegistered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 17.8K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/ntlmssp/av/AvFlagsTest.javaassertNotNull(avFlags, "AvFlags object should not be null"); assertEquals(0x04030201, avFlags.getFlags(), "Flags should match the raw bytes (little-endian)"); // Test with zero byte[] zeroBytes = new byte[] { 0x00, 0x00, 0x00, 0x00 }; AvFlags zeroAvFlags = new AvFlags(zeroBytes); assertNotNull(zeroAvFlags, "AvFlags object should not be null for zero bytes"); Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0)
- 
				
				compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.javareturn LegacyLocalRepositoryManager.overlay(localRepository, legacySupport.getRepositorySession(), null); } private void injectSession1(RepositoryRequest request, MavenSession session) { if (session != null) { request.setOffline(session.isOffline()); request.setForceUpdate(session.getRequest().isUpdateSnapshots()); } } Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0)
- 
				
				api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java* @return map of attribute names to values, never {@code null} */ @Nonnull Map<String, String> attributes(); /** * Returns the value of a specific attribute. * * @param name the name of the attribute to retrieve * @return the attribute value, or {@code null} if the attribute doesn't exist * @throws NullPointerException if name is null */ @NullableRegistered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jul 19 11:09:56 UTC 2025 - 18.2K bytes - Viewed (0)
- 
				
				api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactory.javanull, dependency.getType())); } @Nonnull default DependencyCoordinates create(@Nonnull Session session, Plugin plugin) { // TODO: hard coded string return create(DependencyCoordinatesFactoryRequest.build( session, plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion(), null, null, "maven-plugin")); } @NonnullRegistered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0)