- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,890 for inst (0.05 sec)
-
src/main/java/jcifs/smb1/util/LogStream.java
* * @return the LogStream instance */ public static LogStream getInstance() { if (inst == null) { setInstance(System.err); } return inst; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
private static int lastIndexOf(int[] array, int target, int start, int end) { for (int i = end - 1; i >= start; i--) { if (array[i] == target) { return i; } } return -1; } /** * Returns the least value present in {@code array}. * * @param array a <i>nonempty</i> array of {@code int} values
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
curlHelper.init(); CurlRequest request = curlHelper.get("/test"); assertNotNull(request); // The request should be properly created - we can't easily verify headers without mocking framework } public void test_post() { setupMockConfig("localhost:9200", "", ""); curlHelper.init(); CurlRequest request = curlHelper.post("/test");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbSessionTest.java
NtlmPasswordAuthentication a2 = new NtlmPasswordAuthentication("DOM", "user", "pwd"); SmbSession s1 = new SmbSession(addr, 445, inet, 0, a1); SmbSession s2 = new SmbSession(addr, 445, inet, 0, a2); // same auth instance => matches assertTrue(s1.matches(a1)); // different instance but equal content => matches assertTrue(s1.matches(a2));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* <blockquote> * * <pre> * Exception MalformedURLException: unknown protocol: smb * at java.net.URL.<init>(URL.java:480) * at java.net.URL.<init>(URL.java:376) * at java.net.URL.<init>(URL.java:330) * at jcifs.smb.SmbFile.<init>(SmbFile.java:355) * ... * </pre> * * </blockquote> * */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/util/CryptoTest.java
// When Cipher encryptCipher = Crypto.getArcfour(key); encryptCipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, "RC4")); byte[] encrypted = encryptCipher.doFinal(plaintext); Cipher decryptCipher = Crypto.getArcfour(key); decryptCipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(key, "RC4")); byte[] decrypted = decryptCipher.doFinal(encrypted);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
ArtifactScopeEnum scope; // ------------------------------------------------------------------------ /** * init graph */ public MetadataGraph(int nVertices) { init(nVertices, 2 * nVertices); } public MetadataGraph(int nVertices, int nEdges) { init(nVertices, nEdges); } // ------------------------------------------------------------------------ /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
} }; ComponentUtil.setFessConfig(fessConfig); facetInfo.init(); assertNull(facetInfo.field); assertNull(facetInfo.size); assertNull(facetInfo.minDocCount); assertNull(facetInfo.sort); assertNull(facetInfo.missing); } // Test init with duplicate and empty field names public void test_init_withDuplicateAndEmptyFieldNames() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/RC4.java
* @param dst the destination array for the result * @param doff the offset in the destination array */ public void update(final byte[] src, int soff, final int slen, final byte[] dst, int doff) { int slim = soff + slen; while (soff < slim) { i = i + 1 & 0xff; j = j + s[i] & 0xff; final byte t = s[i]; s[i] = s[j];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0)