- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 691 for uptime (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
/** JVM thread statistics */ public JvmThreadsObj threads; /** JVM class loading statistics */ public JvmClassesObj classes; /** JVM uptime in milliseconds */ public long uptime; } /** * Data transfer object representing JVM memory statistics. */ public static class JvmMemoryObj { /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
append(buf, "total_loaded", () -> classes.getTotalLoadedClassCount()).append(','); append(buf, "unloaded", () -> classes.getUnloadedClassCount()); buf.append("},"); append(buf, "uptime", () -> jvmStats.getUptime().getMillis()); buf.append("},"); } private void appendProcessStats(final StringBuilder buf) { buf.append("\"process\":{");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.facet_timestamp_title=Periodo labels.facet_timestamp_1day=Ultime 24 ore labels.facet_timestamp_1week=Ultima settimana labels.facet_timestamp_1month=Ultimo mese labels.facet_timestamp_1year=Ultimo anno labels.facet_timestamp_3month=Ultimi 3 mesi labels.facet_timestamp_6month=Ultimi 6 mesi labels.facet_timestamp_2year=Ultimi 2 anni labels.facet_timestamp_3year=Ultimi 3 anni labels.facet_contentLength_title=Dimensione
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
* * @return formatted memory usage information */ public static String getMemoryUsageLog() { final Runtime runtime = Runtime.getRuntime(); final long freeBytes = runtime.freeMemory(); final long maxBytes = runtime.maxMemory(); final long totalBytes = runtime.totalMemory(); final long usedBytes = totalBytes - freeBytes;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
assertThat(Adapters.UTC_TIME.toDer(utcTime)).isEqualTo(bytes) assertThat(Adapters.UTC_TIME.fromDer(bytes)).isEqualTo(utcTime) } @Test fun `cannot decode malformed utc time`() { val bytes = "170d3139313231362333303231305a".decodeHex() assertFailsWith<ProtocolException> { Adapters.UTC_TIME.fromDer(bytes) }.also { expected ->
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.facet_label_title=Etiqueta labels.facet_timestamp_title=Período labels.facet_timestamp_1day=Últimas 24 horas labels.facet_timestamp_1week=Última semana labels.facet_timestamp_1month=Último mes labels.facet_timestamp_1year=Último año labels.facet_timestamp_3month=Últimos 3 meses labels.facet_timestamp_6month=Últimos 6 meses labels.facet_timestamp_2year=Últimos 2 años
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
public final ActionResponse godHandMonologue(final ActionRuntime runtime) { return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue); } /** * Hook method called after action execution. * This method delegates to the view helper's action hook for cleanup. * * @param runtime the action runtime context */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
runtime.registerData("eolLink", getHelpUrl(eolLink)); } } /** * Sets up search HTML data for a given action. * * @param action The action to set up data for. * @param runtime The action runtime. */ public void setupSearchHtmlData(final TypicalAction action, final ActionRuntime runtime) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt
internal object CertificateAdapters { /** * ``` * Time ::= CHOICE { * utcTime UTCTime, * generalTime GeneralizedTime * } * ``` * * RFC 5280, section 4.1.2.5: * * > CAs conforming to this profile MUST always encode certificate validity dates through the year * > 2049 as UTCTime; certificate validity dates in 2050 or later MUST be encoded as * > GeneralizedTime.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 13.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* otherwise, a new array of the same runtime type is allocated for this purpose * @return an array containing all of the elements in this queue * @throws ArrayStoreException if the runtime type of the specified array is not a supertype of * the runtime type of every element in this queue * @throws NullPointerException if the specified array is null */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0)