- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 860 for f000 (0.12 sec)
-
cmd/metrics-v2_test.go
t.Errorf("Expected le='0.050' api=PutObject value to be 1 but got '%v'", value) } if le := capitalPutObjects[1].VariableLabels["le"]; le != "5.000" { t.Errorf("Expected le='5.000' api=PutObject metrics but got '%v'", le) } if value := capitalPutObjects[1].Value; value != 2 { t.Errorf("Expected le='5.000' api=PutObject value to be 2 but got '%v'", value) } if le := capitalPutObjects[2].VariableLabels["le"]; le != "+Inf" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 6.8K bytes - Viewed (0) -
docs/metrics/prometheus/README.md
grafana can visualize them for all the nodes ```yaml scrape_configs: - job_name: minio-job metrics_path: /minio/v2/metrics/node scheme: http static_configs: - targets: ['server1:9000','server2:9000','server3:9000','server4:9000'] ``` ##### Resource (optional) Optionally you can also collect resource metrics. ```yaml scrape_configs: - job_name: minio-job metrics_path: /minio/v2/metrics/resource
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
*/ @ValidateTypeFailure public Integer crudMode; /** * The name of the access token. * This is a required field with a maximum length of 1000 characters. */ @Required @Size(max = 1000) public String name; /** * The actual access token string. * This is the token value that will be used for authentication. * Maximum length is 10000 characters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
CacheBuilder.newBuilder().expireAfterAccess(1000, MILLISECONDS).ticker(fakeTicker).build(); cache.put(0, 10); cache.put(2, 30); fakeTicker.advance(999, MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1, MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1000, MILLISECONDS);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
String query = "*"; int allRecordCount = 1000; int pageSize = 100; int offset = 0; try (RankFusionProcessor rankFusionProcessor = new RankFusionProcessor()) { rankFusionProcessor.setSeacher(new TestMainSearcher(allRecordCount)); rankFusionProcessor.register(new TestSubSearcher(10, 0, 0)); rankFusionProcessor.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java
*/ @Required @Size(max = 1000) public String value; /** * The web configuration ID associated with this request header. */ @Required @Size(max = 1000) public String webConfigId; /** * The username of who created this request header. */ @Size(max = 1000) public String createdBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
buildscripts/verify-build.sh
export MINIO_ROOT_PASSWORD=$SECRET_KEY export MINIO_ENDPOINTS="http://127.0.0.1:9000${WORK_DIR}/pool-disk-sets{1...4} http://127.0.0.1:9001${WORK_DIR}/pool-disk-sets{5...8}" "${MINIO[@]}" server --address ":9000" >"$WORK_DIR/pool-minio-9000.log" 2>&1 & "${MINIO[@]}" server --address ":9001" >"$WORK_DIR/pool-minio-9001.log" 2>&1 & "${WORK_DIR}/mc" ready verify } function start_minio_pool_erasure_sets_ipv6() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 19:28:51 UTC 2024 - 6.7K bytes - Viewed (0) -
docs/distributed/decom-encrypted.sh
export CI=true export MINIO_KMS_AUTO_ENCRYPTION=on export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw= (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} 2>&1 >/dev/null) & pid=$! export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/" ./mc ready myminio ./mc admin user add myminio/ minio123 minio123 ./mc admin user add myminio/ minio12345 minio12345
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertNull(config.getNetbiosLocalAddress()); assertEquals(5000, config.getNetbiosSoTimeout()); assertNull(config.getNetbiosScope()); assertEquals(60 * 60 * 10, config.getNetbiosCachePolicy()); assertEquals(576, config.getNetbiosRcvBufSize()); assertEquals(2, config.getNetbiosRetryCount()); assertEquals(3000, config.getNetbiosRetryTimeout());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java
public Integer crudMode; /** The regular canonical hostname that should be used */ @Required @Size(max = 1000) public String regularName; /** The duplicate hostname that should be redirected to the regular name */ @Required @Size(max = 1000) public String duplicateHostName; /** The sort order for displaying this duplicate host entry */ @Required @Min(value = 0)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)