- Sort Score
- Result 10 results
- Languages All
Results 1041 - 1050 of 3,758 for null (0.02 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
static ArtifactInstallerRequest build(Session session, Collection<ProducedArtifact> artifacts) { return builder() .session(requireNonNull(session, "session cannot be null")) .artifacts(requireNonNull(artifacts, "artifacts cannot be null")) .build(); } @NotThreadSafe class ArtifactInstallerRequestBuilder { Session session; RequestTrace trace;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
return higher; } } return null; } public @Nullable E ceiling(E e) { ImmutableSortedSet<E> set = tailSet(e, true); return !set.isEmpty() ? set.first() : null; } public @Nullable E floor(E e) { ImmutableSortedSet<E> set = headSet(e, true); return !set.isEmpty() ? set.last() : null; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
void dfsReferrals_invalidPath() { CIFSException ex = assertThrows(CIFSException.class, () -> transport.getDfsReferrals(ctx, "\\\\server\\share", null, null, 1)); assertTrue(ex.getMessage().contains("double slash")); } @Nested @MockitoSettings(strictness = Strictness.LENIENT) class PreauthHashAndEncryption { @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
File outputFile = new File("test.jpg"); assertFalse(emptyGenerator.generate("thumbnailId", outputFile)); assertFalse(emptyGenerator.generate(null, outputFile)); assertFalse(emptyGenerator.generate("thumbnailId", null)); assertFalse(emptyGenerator.generate(null, null)); } public void test_destroy() { // Initialize without container emptyGenerator = new EmptyGenerator();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java
public void testAddAllAtIndex_nullSupported() { List<E> containsNull = singletonList(null); assertTrue("addAll(n, containsNull) should return true", getList().addAll(0, containsNull)); /* * We need (E) to force interpretation of null as the single element of a * varargs array, not the array itself */ expectAdded(0, (E) null); } @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsUserInfoCB.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsGroupCB.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
assertNull(context.getSalt()); assertEquals(6, context.size()); // 4 header + 2 for one hash algo } @Test @DisplayName("Should handle both null parameters") void testBothNullParameters() { context = new PreauthIntegrityNegotiateContext(mockConfig, null, null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
} @Test @DisplayName("Null treeConnection throws NPE") void constructorNullTreeConnection() { // Null treeConnection throws NPE when acquire() is called assertThrows(NullPointerException.class, () -> new SmbTreeHandleImpl(resourceLoc, null)); } @Test @DisplayName("Null resourceLoc is accepted but may cause issues later")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
.build(); projectBuildingRequest.setRepositorySession(session); DefaultSessionFactory defaultSessionFactory = new DefaultSessionFactory(repositorySystem, null, new DefaultLookup(container), null); MavenSession mSession = new MavenSession( container, projectBuildingRequest.getRepositorySession(), mavenExecutionRequest,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0)