- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 156 for getHash (0.45 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
super(id, path, timestamp); } @Override public String getType() { return SYNONYM; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<SynonymItem> get(final long id) { if (synonymItemList == null) { reload(null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
} public void test_getType() { assertEquals("protwords", protwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), protwordsFile.getPath()); } public void test_getSimpleName() { String expected = testFile.getName(); assertEquals(expected, protwordsFile.getSimpleName()); } public void test_get_found() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
int requestedState = isDirectory() ? Smb2LeaseState.SMB2_LEASE_READ_HANDLE : Smb2LeaseState.SMB2_LEASE_FULL; leaseKey = leaseManager.requestLease(getPath(), requestedState); // Add lease context to create request if (createRequest != null) { createRequest.addLeaseContext(leaseKey, requestedState,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
* @return the last element of {@code iterator} * @since 3.0 */ @ParametricNullness public static <T extends @Nullable Object> T getLast( Iterator<? extends T> iterator, @ParametricNullness T defaultValue) { return iterator.hasNext() ? getLast(iterator) : defaultValue; } /** * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times or until {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 50.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
cookie.getName(), encoded.length(), cookie.getMaxAge(), cookie.getPath(), cookie.getDomain(), cookie.getSecure(), cookie.isHttpOnly(), fessConfig.getCookieSearchParameterSameSite()); } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* * ```java * String attack = "http://example.com/static/images/../../../../../etc/passwd"; * System.out.println(new URL(attack).getPath()); * System.out.println(new URI(attack).getPath()); * System.out.println(HttpUrl.parse(attack).encodedPath()); * ``` * * By canonicalizing the input paths, they are complicit in directory traversal attacks. Code that
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableRangeSet.java
private final int size; ComplementRanges(ImmutableList<Range<C>> ranges) { this.ranges = ranges; this.positiveBoundedBelow = ranges.get(0).hasLowerBound(); this.positiveBoundedAbove = Iterables.getLast(ranges).hasUpperBound(); int size = ranges.size() - 1; if (positiveBoundedBelow) { size++; } if (positiveBoundedAbove) { size++; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @return the last element, or null if the collection is empty * @since Java 21 */ public static <E> E getLast(final SequencedCollection<E> collection) { return collection.isEmpty() ? null : collection.getLast(); } /** * Adds an element to the beginning of a sequenced collection. * * @param <E> the element type
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
String url, type; int n; try (SmbFileInputStream in = new SmbFileInputStream(file); ServletOutputStream out = resp.getOutputStream()) { url = file.getPath(); resp.setContentType("text/plain"); n = url.lastIndexOf('.'); if (n > 0 && (type = url.substring(n + 1)) != null && type.length() > 1 && type.length() < 6) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
// Perform normal tree connection super.connect(); // Register for witness notifications for this share if (session.isWitnessEnabled()) { String shareName = getPath(); // e.g., "\\server\share" session.registerForWitnessNotifications(shareName); } } ``` ### 5.3 File Handle Integration ```java // In SmbFile.java @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)