- Sort Score
- Result 10 results
- Languages All
Results 1471 - 1480 of 2,062 for latch (0.04 sec)
-
src/main/java/org/codelibs/core/lang/MethodUtil.java
throws InvocationTargetRuntimeException, IllegalAccessRuntimeException { assertArgumentNotNull("method", method); try { return (T) method.invoke(target, args); } catch (final InvocationTargetException ex) { final Throwable t = ex.getCause(); if (t instanceof RuntimeException) { throw (RuntimeException) t; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
ci/official/README.md
- Continuous jobs (Run on every GitHub commit) - Uses `pycpp.sh` - Presubmit jobs (Run on every GitHub PR) - Uses `pycpp.sh`, `code_check_changed_files.sh` These "env" files match up with an environment matrix that roughly covers: - Different Python versions - Linux, MacOS, and Windows machines (these pool definitions are internal) - x86 and arm64
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
} pos += writeSecurityBufferContent(type1, pos, domOffOff, domain); pos += writeSecurityBufferContent(type1, pos, wsOffOff, workstation); return type1; } catch (final IOException ex) { throw new IllegalStateException(ex.getMessage()); } } @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
out.write(buffer, 0, ssp0.writeWireFormat(buffer, 0)); setSoTimeout(soTimeout); type = SessionServicePacket.readPacketType(in, buffer, 0); } catch (final IOException ioe) { close(); throw ioe; } switch (type) { case SessionServicePacket.POSITIVE_SESSION_RESPONSE: if (LogStream.level > 2) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
try { assertNotNull(NetbiosName.class.getMethod("getName")); assertNotNull(NetbiosName.class.getMethod("getScope")); assertNotNull(NetbiosName.class.getMethod("getNameType")); } catch (NoSuchMethodException e) { fail("Method not found: " + e.getMessage()); } } @Test @DisplayName("Should handle getName() method") void testGetName() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java
ArtifactResolutionResult result = repositorySystem.resolve(request); try { resolutionErrorHandler.throwErrors(request, result); } catch (MultipleArtifactsNotFoundException e) { Collection<Artifact> missing = new HashSet<>(e.getMissingArtifacts()); for (Iterator<Artifact> it = missing.iterator(); it.hasNext(); ) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt
@JvmOverloads open fun delete(body: RequestBody? = RequestBody.EMPTY): Builder = method("DELETE", body) open fun put(body: RequestBody): Builder = method("PUT", body) open fun patch(body: RequestBody): Builder = method("PATCH", body) open fun query(body: RequestBody): Builder = method("QUERY", body) open fun method( method: String, body: RequestBody?, ): Builder = apply {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 13.1K bytes - Viewed (1) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test getBatchLimit method") void testGetBatchLimit() { // Test default batch limit assertEquals(0, config.getBatchLimit("TreeConnectAndX.QueryInformation")); // Test unspecified batch limit assertEquals(1, config.getBatchLimit("UnknownCommand")); // Test caching behavior
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
protocolHelper.init(); try { protocolHelper.isValidWebProtocol(null); fail("Should throw exception for null URL"); } catch (Exception e) { // Expected assertNotNull(e); } } public void test_isValidFileProtocol_nullUrl() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
try { decoded.decode(buffer, 200, encoded); assertArrayEquals(ciphers, decoded.getCiphers()); } catch (SMBProtocolDecodingException e) { fail("Should not throw exception: " + e.getMessage()); } } @Test @DisplayName("Should verify cipher constants")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0)