- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 38 for thread_name (0.08 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
null, false, false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnThreadName = cci("threadName", "threadName", null, null, String.class, "threadName", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TestThread.java
private final SynchronousQueue<Response> responseQueue = new SynchronousQueue<>(); private @Nullable Throwable uncaughtThrowable = null; public TestThread(L lockLikeObject, String threadName) { super(threadName); this.lockLikeObject = checkNotNull(lockLikeObject); start(); } // Thread.stop() is okay because all threads started by a test are dying at the end of the test,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.failure_url/failure_url.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 417 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp
<tr> <th><la:message key="labels.failure_url_thread_name"/></th> <td>${f:h(threadName)}<la:hidden property="threadName"/></td> </tr> <tr> <th><la:message key="labels.failure_url_error_name"/></th>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 10.8K bytes - Viewed (0) -
src/main/config/es/fess_config_failure_url.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 963 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
/** Current page number. */ private int currentPageNumber; /** ID of the failure URL record. */ public String id; /** Name of the thread that encountered the failure. */ public String threadName; /** Number of errors encountered for this URL. */ public String errorCount; /** Last time this URL was accessed. */ public String lastAccessTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
result.setErrorName(DfTypeUtil.toString(source.get("errorName"))); result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime"))); result.setThreadName(DfTypeUtil.toString(source.get("threadName"))); result.setUrl(DfTypeUtil.toString(source.get("url"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/TestThread.java
private final SynchronousQueue<Response> responseQueue = new SynchronousQueue<>(); private @Nullable Throwable uncaughtThrowable = null; public TestThread(L lockLikeObject, String threadName) { super(threadName); this.lockLikeObject = checkNotNull(lockLikeObject); start(); } // Thread.stop() is okay because all threads started by a test are dying at the end of the test,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFailureUrlCB.java
doColumn("errorName"); } public void columnLastAccessTime() { doColumn("lastAccessTime"); } public void columnThreadName() { doColumn("threadName"); } public void columnUrl() { doColumn("url"); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
if (current < percent) { return true; } final long startTime = getCurrentTimeAsLong(); final String threadName = Thread.currentThread().getName(); try { waitingThreadNames.add(threadName); while (current >= percent) { if (timeoutInMillis > 0 && getCurrentTimeAsLong() - startTime > timeoutInMillis) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)