- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,089 for given (0.02 sec)
-
src/test/java/jcifs/RuntimeCIFSExceptionTest.java
assertTrue(exception instanceof RuntimeException); } @Test @DisplayName("Should create RuntimeCIFSException with message") void testConstructorWithMessage() { // Given String message = "CIFS runtime error occurred"; // When RuntimeCIFSException exception = new RuntimeCIFSException(message); // Then assertNotNull(exception);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/NetServerEnumIteratorTest.java
} @Test @DisplayName("Constructor should throw SmbException for non-workgroup type with host") void testConstructor_NonWorkgroupType_ThrowsException() throws Exception { // Given: A non-workgroup type with a host when(locator.getType()).thenReturn(SmbConstants.TYPE_SERVER); when(locator.getURL()).thenReturn(createSmbURL("smb://server/"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java
*/ package org.codelibs.fess.crawler.filter; /** * UrlFilter checks if a given url is a target one. * * @author shinsuke * */ public interface UrlFilter { /** * Initialize a url filter by sessionId. * * @param sessionId Session ID */ void init(String sessionId); /** * Check if a given url is a target. * * @param url URL
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
} @Test @DisplayName("Should create new connections when reuse conditions are not met") void testNoConnectionReuse() throws Exception { // Given: Create a new pool for this test to ensure isolation SmbTransportPoolImpl testPool = new SmbTransportPoolImpl(); when(ctx.getTransportPool()).thenReturn(testPool); // Create an existing connection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
return construct(e1); } /** * Returns an immutable list containing the given elements, in order. * * @throws NullPointerException if any element is null */ public static <E> ImmutableList<E> of(E e1, E e2) { return construct(e1, e2); } /** * Returns an immutable list containing the given elements, in order. * * @throws NullPointerException if any element is null */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
*/ package org.codelibs.fess.crawler.client.ftp; import java.util.ArrayList; import java.util.List; /** * Holds a list of FtpAuthentication objects and provides methods to add and retrieve them based on a given path. * This class is designed to manage FTP authentication details for different paths. */ public class FtpAuthenticationHolder { List<FtpAuthentication> authenticationList = new ArrayList<>(); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzer.java
/** * Analyzes the given text and returns a list of tokens. * * @param text the text to analyze * @param field the field associated with the text * @param lang the language of the text * @return a list of analyzed tokens */ List<AnalyzeToken> analyze(String text, String field, String lang); /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java
*/ void init() throws IOException; /** * Converts the given text into a list of readings based on the specified field and languages. * * @param text the text to be converted. * @param field the field to be used for conversion. * @param langs the languages to be used for conversion. * @return a list of readings for the given text. * @throws IOException if an I/O error occurs during conversion. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java
"toArray(sameSizeE[]) should return the given array", array, collection.toArray(array)); expectArrayContentsAnyOrder(createSamplesArray(), array); } @CollectionFeature.Require(KNOWN_ORDER) public void testToArray_rightSizedArray_ordered() { E[] array = getSubjectGenerator().createArray(getNumElements()); assertSame( "toArray(sameSizeE[]) should return the given array", array, collection.toArray(array));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* * @return the unknown name */ NetbiosName getUnknownName(); /** * Retrieve all addresses of a host by it's address. NetBIOS hosts can * have many names for a given IP address. The name and IP address make the * NetBIOS address. This provides a way to retrieve the other names for a * host with the same IP address. * * @param addr * the address to query
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K bytes - Viewed (0)