- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,394 for sysmem (0.09 sec)
-
samples/guide/src/main/java/okhttp3/recipes/Authenticate.java
if (response.request().header("Authorization") != null) { return null; // Give up, we've already attempted to authenticate. } System.out.println("Authenticating for response: " + response); System.out.println("Challenges: " + response.challenges()); String credential = Credentials.basic("jesse", "password1"); return response.request().newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + SuggestCreator.class.getCanonicalName() + " [options...] arguments..."); parser.printUsage(System.err); return; } if (logger.isDebugEnabled()) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
} } @Test void testTimestampConsistency() { long beforeCreation = System.currentTimeMillis(); WitnessNotification newNotification = new WitnessNotification(WitnessEventType.RESOURCE_CHANGE, "TestResource"); long afterCreation = System.currentTimeMillis(); assertTrue(newNotification.getTimestamp() >= beforeCreation);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
// Create a buffer with null terminator within the max length byte[] buffer = new byte[20]; System.arraycopy("Test".getBytes(), 0, buffer, 0, 4); buffer[4] = 0; // null terminator System.arraycopy("String".getBytes(), 0, buffer, 5, 6); String result = testBlock.readString(buffer, 0, buffer.length, 10, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Ticker.java
* A ticker that reads the current time using {@link System#nanoTime}. * * @since 10.0 */ public static Ticker systemTicker() { return SYSTEM_TICKER; } private static final Ticker SYSTEM_TICKER = new Ticker() { @Override @SuppressWarnings("GoodTime") // reading system time without TimeSource public long read() { return System.nanoTime(); } };
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
writeInt4(buffer, offset + 12, dataOffset - offset); // DataOffset // Write context name System.arraycopy(getName().getBytes(), 0, buffer, offset + 16, getName().length()); // Write lease data System.arraycopy(leaseKey.getKey(), 0, buffer, dataOffset, 16); // LeaseKey writeInt4(buffer, dataOffset + 16, leaseState); // LeaseState
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
public void test_getProcessTypeList_crawlerMode() { System.setProperty("lasta.env", Constants.EXECUTE_TYPE_CRAWLER); try { final List<String> ptList = pathMappingHelper.getProcessTypeList(); assertEquals(1, ptList.size()); assertEquals(Constants.PROCESS_TYPE_REPLACE, ptList.get(0)); } finally { System.clearProperty("lasta.env"); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/util/ByteEncodableTest.java
// The error should occur when System.arraycopy is called. ByteEncodable encodable = new ByteEncodable(data, 1, 2); // off=1, len=2, data.length=2. 1+2 > 2 byte[] dest = new byte[5]; // Expect IndexOutOfBoundsException from System.arraycopy assertThrows(IndexOutOfBoundsException.class, () -> { encodable.encode(dest, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
} // Test system property setting public void test_systemPropertySetting() { // Test system property configuration String originalValue = System.getProperty(FesenClient.HTTP_ADDRESS); try { System.setProperty(FesenClient.HTTP_ADDRESS, "http://localhost:9200"); assertEquals("http://localhost:9200", System.getProperty(FesenClient.HTTP_ADDRESS));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0)