- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 1,341 for SYSTEM (0.05 sec)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java
static <T extends @Nullable Object> T[] copy(Object[] source, int from, int to, T[] arrayOfType) { T[] result = newArray(arrayOfType, to - from); System.arraycopy(source, from, result, 0, to - from); return result; } // TODO(user): Move this logic to a utility class. @JsType(isNative = true, name = "Array", namespace = JsPackage.GLOBAL)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jun 10 15:17:16 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
} if (factory != null) { handler = factory.createURLStreamHandler(protocol); } if (handler == null) { final String path = System.getProperty(HANDLER_PKGS_PROPERTY); final StringTokenizer tokenizer = new StringTokenizer(path, "|"); while (tokenizer.hasMoreTokens()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/erasure/README.md
-v /mnt/data7:/data7 \ -v /mnt/data8:/data8 \ quay.io/minio/minio server /data{1...8} --console-address ":9001" ``` ### 3. Test your setup
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* Sets the name and expiration time based on the provided parameters. * * @param sessionId the session ID to update * @param name the name to set for the crawling session (uses system name if blank) * @param dayForCleanup number of days until cleanup (sets expiration if >= 0) * @throws FessSystemException if unable to store the updated crawling session */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
* * In the future, the use of Unsafe.getLong() should be replaced by ByteBuffer.getLong(), * which will have an efficient native implementation in JDK 9. * */ String arch = System.getProperty("os.arch"); if (Objects.equals(arch, "amd64") || Objects.equals(arch, "aarch64")) { return ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN) ? UnsafeByteArray.UNSAFE_LITTLE_ENDIAN
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
byte[] b = invocation.getArgument(0); int off = invocation.getArgument(1); int l = invocation.getArgument(2); System.arraycopy(expectedOutput, 0, b, off, l); return l; }); HMACT64 hmac = new HMACT64(TEST_KEY); int bytesWritten = hmac.engineDigest(buffer, 0, expectedOutput.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* * <p>If the user did not specify any excludes, the default is often files generated * by Source Code Management (<abbr>SCM</abbr>) software or by the operating system. * Examples: <code>"**/.gitignore"</code>, <code>"**/.DS_Store"</code>.</p> * * @param defaultIncludes the default includes if unspecified by the user
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 6.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
} /** * Append newline to the message buffer. * * @return the current builder */ @Nonnull default MessageBuilder newline() { return append(System.lineSeparator()); } /** * Append formatted content to the buffer. * @see String#format(String, Object...) *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
if (extractorMap.containsKey(key)) { final Extractor[] existingExtractors = extractorMap.get(key); final Extractor[] newExtractors = new Extractor[existingExtractors.length + 1]; System.arraycopy(existingExtractors, 0, newExtractors, 0, existingExtractors.length); newExtractors[newExtractors.length - 1] = extractor;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.3K bytes - Viewed (0)