- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 5,228 for newA (0.03 sec)
-
src/test/java/jcifs/netbios/NodeStatusRequestTest.java
void multipleWriteBodyWireFormat_shouldProduceSameResult() { // Arrange Name realName = new Name(mockConfig, "SERVER", 0x20, "domain.local"); nodeStatusRequest = new NodeStatusRequest(mockConfig, realName); byte[] dst1 = new byte[100]; byte[] dst2 = new byte[100]; // Act int result1 = nodeStatusRequest.writeBodyWireFormat(dst1, 0);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, ciphers); assertNotNull(context); assertArrayEquals(ciphers, context.getCiphers()); } @Test @DisplayName("Should create instance with null ciphers") void testConstructorWithNullCiphers() { EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, null);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
} } catch (final Exception e) { throw new StorageException("Failed to delete " + objectName, e); } } @Override public List<StorageItem> listObjects(final String prefix, final int maxItems) { final List<StorageItem> items = new ArrayList<>(); final List<StorageItem> fileItems = new ArrayList<>(); try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
CreateContextRequest[] contexts = new CreateContextRequest[] { new MockCreateContextRequest("SHORT", 16), new MockCreateContextRequest("MEDIUM_LENGTH_NAME", 32), new MockCreateContextRequest("VERY_LONG_CONTEXT_NAME_FOR_TESTING", 64) }; byte[] buffer = new byte[512]; int offset = 0;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java
public final class PrintEvents { private final OkHttpClient client = new OkHttpClient.Builder() .eventListenerFactory(PrintingEventListener.FACTORY) .build(); public void run() throws Exception { Request washingtonPostRequest = new Request.Builder() .url("https://www.washingtonpost.com/") .build(); client.newCall(washingtonPostRequest).enqueue(new Callback() {Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 16 23:20:49 UTC 2020 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
Kerb5Authenticator a = new Kerb5Authenticator((Subject) null); Kerb5Authenticator b = new Kerb5Authenticator((Subject) null); // Both null subjects -> equal assertEquals(a, b); assertEquals(a.hashCode(), b.hashCode()); // Mixed null/non-null -> not equal Kerb5Authenticator c = new Kerb5Authenticator(new Subject()); assertNotEquals(a, c);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} throw new ThumbnailGenerationException(e.getMessage()); } catch (final Exception e) { throw new ThumbnailGenerationException("Failed to process a thumbnail content: " + url, e); } } throw new ThumbnailGenerationException("Failed to process a thumbnail content: " + url + " (Redirect Loop)"); });Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
URL url = new URL("gcs://mybucket/object.txt"); Handler handler = new Handler(); Handler.GcsURLConnection conn = (Handler.GcsURLConnection) handler.openConnection(url); final int threadCount = 10; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch doneLatch = new CountDownLatch(threadCount);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCacheTest.java
Set<Artifact> reversedArtifacts = new LinkedHashSet<>(4); artifacts.add(new DefaultArtifact("g", "a4", "v", "compile", "jar", "", null)); artifacts.add(new DefaultArtifact("g", "a3", "v", "compile", "jar", "", null)); artifacts.add(new DefaultArtifact("g", "a2", "v", "compile", "jar", "", null)); artifacts.add(new DefaultArtifact("g", "a1", "v", "compile", "jar", "", null));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(listener.isEmpty()).isTrue(); Object one = new Object(); Object two = new Object(); Object three = new Object(); Object four = new Object(); Object five = new Object(); Object six = new Object(); map.put(one, two); map.remove(one); assertNotified(listener, one, two, RemovalCause.EXPLICIT);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 117.5K bytes - Viewed (0)