- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 167 for EX (0.01 sec)
-
src/main/java/jcifs/http/NtlmHttpFilter.java
if (this.realm == null) { this.realm = "jCIFS"; } this.transportContext = new BaseContext(new PropertyConfiguration(p)); } catch (final CIFSException ex) { throw new ServletException("Failed to initialize CIFS context"); } } @Override public void destroy() { } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
if (end == -1) { end = ipString.length(); } try { bytes[i] = parseOctet(ipString, start, end); } catch (NumberFormatException ex) { return null; } start = end + 1; } return bytes; } private static byte @Nullable [] textToNumericFormatV6(String ipString) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
cmd/storage-datatypes.go
Prefix string `msg:"pr,omitempty"` // Prefix as given by request. File string `msg:"fl"` // File name as given in request. Exists bool `msg:"ex"` // Returns whether the file existed on disk. Error string `msg:"er,omitempty"` // Returns any error when reading. Data []byte `msg:"d"` // Contains all data of file.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* @return The converted {@link Time}. */ protected static Time toSqlTimeJdbcEscape(final String str) { try { return Time.valueOf(str); } catch (final IllegalArgumentException ex) { return null; } } /** * Converts a pattern string to a plain pattern string without delimiters. * * @param pattern * The pattern string.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
*/ protected static Timestamp toSqlTimestampJdbcEscape(final String str) { try { return Timestamp.valueOf(str); } catch (final IllegalArgumentException ex) { return null; } } /** * Converts the pattern string to a plain pattern string without delimiters. * * @param pattern * The pattern string.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Queues.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
AllocInfo ai; try { ai = queryFSInformation(th, AllocInfo.class, FileSystemInformation.FS_SIZE_INFO); } catch (final SmbException ex) { log.debug("getDiskFreeSpace", ex); switch (ex.getNtStatus()) { case NtStatus.NT_STATUS_INVALID_INFO_CLASS: case NtStatus.NT_STATUS_UNSUCCESSFUL: // NetApp Filer if (!th.isSMB2()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt
val call = client.newCall(request) val response = call.execute() assertThat(response.body.string()).isEqualTo("success") } /** * Tests that use this will fail unless boot classpath is set. Ex. `-Xbootclasspath/p:/tmp/alpn-boot-8.0.0.v20140317` */ private fun enableProtocol(protocol: Protocol) { enableTls() client = client .newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Queues.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
char[] both = {character, low}; c = Character.codePointAt(both, 0); i++; } catch (IndexOutOfBoundsException ex) { // high surrogate without low surrogate. Not a lot we can do here except treat it as a regular // character } } if (c == '.') {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0)