- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for parse_log (0.08 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
this.witnessHeartbeatTimeout = Long.parseLong(value); } catch (NumberFormatException e) { // Invalid value ignored } } value = props.getProperty("jcifs.smb.client.witnessRegistrationTimeout"); if (value != null) { try { this.witnessRegistrationTimeout = Long.parseLong(value); } catch (NumberFormatException e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) { id = Long.parseLong(tmp.substring(2), 16); } else { id = Long.parseLong(tmp); } this.identifier_authority = new byte[6]; for (int i = 5; id > 0; i--) { this.identifier_authority[i] = (byte) (id % 256);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
* * @throws NumberFormatException if the string does not contain a valid unsigned {@code long} * value * @throws NullPointerException if {@code string} is null (in contrast to {@link * Long#parseLong(String)}) */ @CanIgnoreReturnValue public static long parseUnsignedLong(String string) { return parseUnsignedLong(string, 10); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) { id = Long.parseLong(tmp.substring(2), 16); } else { id = Long.parseLong(tmp); } this.identifier_authority = new byte[6]; for (int i = 5; id > 0; i--) { this.identifier_authority[i] = (byte) (id % 256);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
return value; } @Override public Long getTimeAdjustTimeMillisAsLong() { return Long.parseLong(value); } }; FessTimeResourceProvider testProvider = new FessTimeResourceProvider(testConfig); assertNotNull(testProvider); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
*/ public static long getLong(final String key, long def) { final String s = prp.getProperty(key); if (s != null) { try { def = Long.parseLong(s); } catch (final NumberFormatException nfe) { if (LogStream.level > 0) { nfe.printStackTrace(log); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
// Given int securityMode = Integer.decode(securityModeHex); int capabilities = (int) Long.parseLong(capabilitiesHex.substring(2), 16); Smb2SessionSetupRequest req = new Smb2SessionSetupRequest(mockContext, securityMode, capabilities, 0, null); byte[] buffer = new byte[512]; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0)