- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 366 for modification (0.1 sec)
-
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
private static final Pattern EMAIL_ADDRESS_PATTERN = Pattern.compile("[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}", Pattern.CASE_INSENSITIVE); /** * Cache for storing resource file modification timestamps to enable cache busting. * The cache expires after 10 minutes and has a maximum size of 1000 entries. */ private static LoadingCache<String, Long> resourceHashCache =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
cmd/api-router.go
return h&flag != 0 } // s3APIMiddleware - performs some common handler functionality for S3 API // handlers. // // It is set per-"handler function registration" in the router to allow for // behavior modification via flags. // // This middleware always calls `collectAPIStats` to collect API stats. // // The passed in handler function must be a method of `objectAPIHandlers` for
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 07 15:37:12 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* This class extends the base CrawlerThread and provides Fess-specific functionality for * crawling and indexing documents, including incremental crawling capabilities, content * modification checking, and integration with the Fess search engine backend. * * <p>Key features include:</p> * <ul> * <li>Incremental crawling support with last-modified timestamp checking</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
fail("Should throw RuntimeException"); } catch (RuntimeException e) { assertEquals("Test exception", e.getMessage()); } } // Test concurrent modification of jvmOptions public void test_jvmOptions_concurrent() throws InterruptedException { CountDownLatch latch = new CountDownLatch(2); Thread t1 = new Thread(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} private void fallbackToTcp(RdmaConnection connection) { log.info("Falling back to TCP transport"); // Switch transport to TCP // This would require transport factory modification } } ``` ## 10. Security Considerations ### 10.1 RDMA Security ```java public class RdmaSecurityManager {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Adds a query rescorer for post-processing search results. * Query rescorers allow modification of search scores after the initial query execution. * * @param rescorer the query rescorer to add */ public void addQueryRescorer(final QueryRescorer rescorer) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
* lists are sublist views of the original list, produced on demand using {@link List#subList(int, * int)}, and are subject to all the usual caveats about modification as explained in that API. * * @param list the list to return consecutive sublists of * @param size the desired size of each sublist (the last may be smaller) * @return a list of consecutive sublists
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
i = t1.compareToIgnoreCase(t2); if (i == 0) { return f1name.compareToIgnoreCase(f2name); } return i; } /** * Compares two SMB files by modification date. * @param f1 first file to compare * @param f1name name of first file * @param f2 second file to compare * @return comparison result for sorting
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
i = t1.compareToIgnoreCase(t2); if (i == 0) { return f1name.compareToIgnoreCase(f2name); } return i; } /** * Compares two SMB files by modification date. * @param f1 first file to compare * @param f1name name of first file * @param f2 second file to compare * @return comparison result for sorting
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
@Throws(IOException::class) fun snapshots(): MutableIterator<Snapshot> { initialize() return object : MutableIterator<Snapshot> { /** Iterate a copy of the entries to defend against concurrent modification errors. */ private val delegate = ArrayList(lruEntries.values).iterator() /** The snapshot to return from [next]. Null if we haven't computed that yet. */ private var nextSnapshot: Snapshot? = null
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0)