- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 1,404 for systeem (1.14 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
totalLen = SMB2_HEADER_LENGTH + body.length; } byte[] packet = new byte[totalLen]; System.arraycopy(header, 0, packet, 0, header.length); System.arraycopy(body, 0, packet, SMB2_HEADER_LENGTH, body.length); if (ctxOffsetFromHeader != null && ctxBytes != null) { System.arraycopy(ctxBytes, 0, packet, ctxOffsetFromHeader, ctxBytes.length); } return packet; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
* Data transfer object representing operating system statistics. */ public static class OsObj { /** * Default constructor. */ public OsObj() { // Default constructor } /** Memory statistics for the operating system. */ public OsMemoryObj memory; /** CPU statistics for the operating system. */ public OsCpuObj cpu;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.7K bytes - Viewed (0) -
docs/bucket/versioning/README.md
System.out.println("my-bucketname is created successfully"); } boolean isVersioningEnabled = minioClient.isVersioningEnabled( IsVersioningEnabledArgs.builder().bucket("my-bucketname").build()); if (isVersioningEnabled) { System.out.println("Bucket versioning is enabled"); } else { System.out.println("Bucket versioning is disabled");
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 12K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
* @throws IOException if an I/O error occurs */ @SuppressWarnings("GoodTime") // reading system time without TimeSource public static void touch(File file) throws IOException { checkNotNull(file); if (!file.createNewFile() && !file.setLastModified(System.currentTimeMillis())) { throw new IOException("Unable to update modification time of " + file); } } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
* Returns the input stream to be used for the Maven execution. * If not set, {@link System#in} will be used by default. * * @return the input stream, or null if not set */ @Nullable InputStream stdIn(); /** * Returns the output stream to be used for the Maven execution. * If not set, {@link System#out} will be used by default. * * @return the output stream, or null if not set
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
import jcifs.smb1.UniAddress; import jcifs.smb1.util.LogStream; /** * Implements DFS (Distributed File System) referral caching and resolution. * This class manages DFS referral cache and provides DFS path resolution functionality. */ public class Dfs { /** * Default constructor for Dfs. * Initializes the DFS referral system. */ public Dfs() { // Default constructor }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
* * @return the nativeLanMan */ public final String getNativeLanMan() { return this.nativeLanMan; } /** * Returns the native operating system string reported by the server. * * @return the nativeOs */ public final String getNativeOs() { return this.nativeOs; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
/** * This class is a timer target for monitoring system-level statistics. * It collects and logs information about the operating system, process, * JVM, and search engine. */ public class SystemMonitorTarget extends MonitorTarget { private static final Logger logger = LogManager.getLogger(SystemMonitorTarget.class); /** * Constructs a new system monitor target. */ public SystemMonitorTarget() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
private ByteArrayOutputStream testOutput; private PrintStream testStream; private int originalLevel; @BeforeEach void setUp() throws Exception { // Save original state originalErr = System.err; originalLevel = LogStream.level; // Create test stream testOutput = new ByteArrayOutputStream(); testStream = new PrintStream(testOutput);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/text/DecimalFormatSymbolsUtilTest.java
*/ public void testGetDecimalFormatSymbols() throws Exception { final DecimalFormatSymbols symbols = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(Locale.GERMAN); System.out.println("DecimalSeparator:" + symbols.getDecimalSeparator()); System.out.println("GroupingSeparator:" + symbols.getGroupingSeparator()); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.2K bytes - Viewed (0)