- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,350 for Systems (0.46 sec)
-
android/guava/src/com/google/common/base/StandardSystemProperty.java
import com.google.common.annotations.GwtIncompatible; import org.jspecify.annotations.Nullable; /** * Represents a {@linkplain System#getProperties() standard system property}. * * @author Kurt Alfred Kluever * @since 15.0 */ @GwtIncompatible // java.lang.System#getProperty public enum StandardSystemProperty { /** Java Runtime Environment version. */ JAVA_VERSION("java.version"),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 06 10:03:30 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
executor.shutdown(); long overallEnd = System.nanoTime(); double overallTimeMs = (overallEnd - overallStart) / 1_000_000.0; double avgOpTimeNs = totalTime.get() / (double) operations.get(); System.out.printf("Encryption Byte Tracking Performance: %d ops in %.2f ms%n", operations.get(), overallTimeMs); System.out.printf(" Avg atomic operation time: %.2f ns%n", avgOpTimeNs);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + ThumbnailGenerator.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 - 9.3K bytes - Viewed (0) -
cmd/veeam-sos-api.go
Capacity int64 `xml:"Capacity"` Available int64 `xml:"Available"` Used int64 `xml:"Used"` } const ( systemXMLObject = ".system-d26a9498-cb7c-4a87-a44a-8ae204f5ba6c/system.xml" capacityXMLObject = ".system-d26a9498-cb7c-4a87-a44a-8ae204f5ba6c/capacity.xml" veeamAgentSubstr = "APN/1.0 Veeam/1.0" ) func isVeeamSOSAPIObject(object string) bool { switch object {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 15 00:34:56 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/fr/docs/async.md
* de la donnée envoyée depuis votre programme soit reçue par le client à travers le réseau * le contenu d'un fichier sur le disque soit lu par le système et passé à votre programme * le contenu que votre programme a passé au système soit écrit sur le disque * une opération effectuée à distance par une API se termine * une opération en BDD se termine * une requête à une BDD renvoie un résultat * etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
private final AtomicLong failureCount = new AtomicLong(0); private volatile long firstConnectionTime = System.currentTimeMillis(); private volatile long lastActivityTime = System.currentTimeMillis(); void recordConnection() { connectionsCreated.incrementAndGet(); lastActivityTime = System.currentTimeMillis(); } void recordSuccess() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java
@Override public void onMessage(WebSocket webSocket, String text) { System.out.println("MESSAGE: " + text); } @Override public void onMessage(WebSocket webSocket, ByteString bytes) { System.out.println("MESSAGE: " + bytes.hex()); } @Override public void onClosing(WebSocket webSocket, int code, String reason) { webSocket.close(1000, null); System.out.println("CLOSE: " + code + " " + reason); }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Apr 04 11:40:21 UTC 2024 - 1.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosFileFilterTest.java
"21, 5, true", // READONLY | SYSTEM | DIRECTORY vs READONLY | SYSTEM // Negative cases (should be rejected) "1, 2, false", // READONLY vs HIDDEN "2, 1, false", // HIDDEN vs READONLY "16, 32, false", // DIRECTORY vs ARCHIVE "3, 4, false", // READONLY | HIDDEN vs SYSTEM "0, 1, false", // No filter attributes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
}); } @Test @DisplayName("Should handle system property overrides") void testSystemPropertyOverrides() throws CIFSException { // Given String originalValue = System.getProperty("jcifs.smb.client.domain"); System.setProperty("jcifs.smb.client.domain", "systemdomain"); try { Properties props = new Properties();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0)