- Sort Score
- Num 10 results
- Language All
Results 1241 - 1250 of 4,987 for sull (0.02 seconds)
-
android/guava/src/com/google/common/collect/AbstractSequentialIterator.java
* whose next element can always be derived from the previous element. Null elements are not * supported, nor is the {@link #remove()} method. * * <p>Example: * * {@snippet : * Iterator<Integer> powersOfTwo = * new AbstractSequentialIterator<Integer>(1) { * protected Integer computeNext(Integer previous) { * return (previous == 1 << 30) ? null : previous * 2; * } * }; * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 2.3K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingRequest.java
* * @return The global toolchains source or {@code null} if none. */ Source getGlobalToolchainsSource(); /** * Sets the global toolchains source. If both user toolchains and a global toolchains are given, the user toolchains * take precedence. * * @param globalToolchainsSource The global toolchains source, may be {@code null} to disable global toolchains.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 2.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
/** * Gets the source from which the model was read. * * @return The source from which the model was read, never {@code null}. */ @Nonnull ModelSource getSource(); /** * Gets the file model. * * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
verify(messageBlock).getDigest(); } @Test @DisplayName("Test setDigest with null value") void testSetDigestWithNull() { // Given doNothing().when(messageBlock).setDigest(null); when(messageBlock.getDigest()).thenReturn(null); // When messageBlock.setDigest(null); SMBSigningDigest retrievedDigest = messageBlock.getDigest(); // Then
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.7K bytes - Click Count (0) -
src/main/java/jcifs/http/NetworkExplorer.java
String msg, pathInfo, server = null; boolean offerBasic, possibleWorkgroup = true; NtlmPasswordAuthentication ntlm = null; final HttpSession ssn = req.getSession(false); pathInfo = req.getPathInfo(); if (pathInfo != null) { int i; server = parseServerAndShare(pathInfo); if (server != null && (i = server.indexOf('/')) > 0) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertNotNull(exception); assertNull(exception.getCause()); assertNull(exception.getMessage()); } @Test public void test_constructor_withNullMessageAndCause() { // Test with both null message and cause DataStoreException exception = new DataStoreException(null, null); assertNotNull(exception); assertNull(exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/JobProcessTest.java
JobProcess jobProcess = new JobProcess(mockProcess, 0, null); assertNotNull(jobProcess.getInputStreamThread()); } @Test public void test_constructor_withNullCallback() throws IOException { Process mockProcess = createMockProcess("test"); JobProcess jobProcess = new JobProcess(mockProcess, 10, null); assertNotNull(jobProcess.getInputStreamThread()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
} @Test @DisplayName("readParameterWordsWireFormat with null buffer - throws NullPointerException") void testReadParameterWordsWithNullBuffer() { assertThrows(NullPointerException.class, () -> response.readParameterWordsWireFormat(null, 0)); } @Test @DisplayName("readParameterWordsWireFormat with offset beyond buffer - throws exception")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java
eventCatapult.fire(ExecutionEvent.Type.SessionEnded, session, null); } } public List<TaskSegment> calculateTaskSegments(MavenSession session) throws Exception { MavenProject rootProject = session.getTopLevelProject(); List<String> tasks = requireNonNull(session.getGoals()); // session never returns null, but empty list if (tasks.isEmpty()
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/StandardMutableValueGraph.java
GraphConnections<N, V> connectionsV = nodeConnections.get(nodeV); if (connectionsU == null || connectionsV == null) { return null; } V previousValue = connectionsU.removeSuccessor(nodeV); if (previousValue != null) { connectionsV.removePredecessor(nodeU); checkNonNegative(--edgeCount); } return previousValue; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 6.3K bytes - Click Count (0)