- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 967 for logb (0.02 sec)
-
cmd/server-main.go
}, cli.BoolFlag{ Name: "log-compress", Usage: "specify if we want the rotated logs to be gzip compressed or not", EnvVar: "MINIO_LOG_COMPRESS", Hidden: true, }, cli.StringFlag{ Name: "log-prefix", Usage: "specify the log prefix name for the server log", EnvVar: "MINIO_LOG_PREFIX", Hidden: true, }, } var serverCmd = cli.Command{ Name: "server",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.advance_search_timestamp_pastyear=past year labels.searchlog_configuration=Search Log labels.searchlog_title=Search Log labels.searchlog_log_type=Log Type labels.searchlog_log_type_search=Search Log labels.searchlog_log_type_click=Click Log labels.searchlog_log_type_favorite=Favorite Log labels.searchlog_log_type_user_info=User Information labels.searchlog_log_type_search_keyword=Keywords
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
resultBuf.append(e.getMessage()).append("\n"); } // purge job logs try { final int days = ComponentUtil.getFessConfig().getPurgeJobLogDay(); if (days >= 0) { jobLogService.deleteBefore(days); } else { resultBuf.append("Skipped to purge job logs.\n"); } } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/MathBenchmarking.java
return result; } /** * Generates a number in [0, 2^numBits) with an exponential distribution. The floor of the log2 of * the result is chosen uniformly at random in [0, numBits), and then the result is chosen in that * range uniformly at random. Zero is treated as having log2 == 0. */ static BigInteger randomNonNegativeBigInteger(int numBits) { int digits = RANDOM_SOURCE.nextInt(numBits);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.1K bytes - Viewed (0) -
buildscripts/verify-build.sh
if [ "$rv" -ne 0 ]; then echo "server1 log:" cat "$WORK_DIR/dist-minio-9000.log" echo "server2 log:" cat "$WORK_DIR/dist-minio-9001.log" echo "server3 log:" cat "$WORK_DIR/dist-minio-9002.log" echo "server4 log:" cat "$WORK_DIR/dist-minio-9003.log" fi rm -f "$WORK_DIR/dist-minio-9000.log" "$WORK_DIR/dist-minio-9001.log" "$WORK_DIR/dist-minio-9002.log" "$WORK_DIR/dist-minio-9003.log" return "$rv"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 19:28:51 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
throw smbe; } log.debug("resolveDfs", smbe); } // If we get here, we apparently have a bad connection. // Disconnect and try again. if ( log.isDebugEnabled() ) { log.debug("Retrying (" + retries + ") resolveDfs: " + request); } log.debug("Disconnecting tree on DFS retry"); disconnect(true);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
.isLessThan(logs.size) assertThat(logs[index++]) .matches(Regex(prefix.pattern + regex.pattern, RegexOption.DOT_MATCHES_ALL)) } fun assertNoMoreLogs() { assertThat(logs.size, "More messages remain: ${logs.subList(index, logs.size)}") .isEqualTo(index) } override fun log(message: String) { logs.add(message) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 09:14:38 UTC 2024 - 37.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
if ( log.isDebugEnabled() ) { log.debug("Sign key is " + Hexdump.toHexString(this.signKey)); log.debug("Verify key is " + Hexdump.toHexString(this.verifyKey)); } this.sealClientKey = deriveKey(mk, C2S_SEAL_CONSTANT); this.sealClientHandle = Crypto.getArcfour(this.sealClientKey); if ( log.isDebugEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
docs/auditlog/auditlog-echo.md
1. Run the tool with: ``` go run docs/auditlog/auditlog-echo.go ``` The listen port has a default value (8080), but can be set with the `-port` flag. 2. Configure audit logging in MinIO with for example: ``` mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080 ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 01 21:31:13 UTC 2024 - 447 bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
if ( log.isTraceEnabled() ) { log.debug("Cannot reuse, signing enforced on connection " + conn); } continue; } if ( !conn.getNegotiateResponse().canReuse(tc, forceSigning) ) { if ( log.isTraceEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0)