Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 742 for interval (0.09 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

                   }
                }
             },
             "gridPos": {
                "h": 5,
                "w": 24,
                "x": 0,
                "y": 1
             },
             "id": 2,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [ ],
                   "displayMode": "list"
                }
             },
             "pluginVersion": "v11.0.0",
             "targets": [
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                   }
                }
             },
             "gridPos": {
                "h": 8,
                "w": 8,
                "x": 0,
                "y": 1
             },
             "id": 2,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [
                      "last",
                      "max"
                   ],
                   "displayMode": "table"
                }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-extension-dashboard.json

              "interval": "",
              "legendFormat": "native",
              "refId": "A"
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "avg(envoy_wasm_envoy_wasm_runtime_v8_active)",
              "interval": "",
              "legendFormat": "v8",
              "refId": "B"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/output.json

                   "unit": "s"
                }
             },
             "gridPos": {
                "h": 8,
                "w": 8,
                "x": 0,
                "y": 1
             },
             "id": 2,
             "interval": "1m",
             "options": {
                "legend": {
                   "calcs": [
                      "lastNotNull",
                      "max"
                   ],
                   "displayMode": "table"
                }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/node/minio-node.json

              "exemplar": true,
              "expr": "max(minio_node_drive_total{job=~\"$scrape_jobs\",server=\"$server\"})",
              "format": "table",
              "hide": false,
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.gen.json

                   "unit": "reqps"
                }
             },
             "gridPos": {
                "h": 5,
                "w": 6,
                "x": 0,
                "y": 1
             },
             "id": 2,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [
                      "last",
                      "max"
                   ],
                   "displayMode": "table"
                }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/main/webapp/js/suggestor.js

        //monitoring input field
        setInterval(function() {
          if (interval < 5) {
            interval = interval + 1;
          } else {
            if ($textArea.val() !== inputText) {
              if (!isFocusList && started && !suggestingSts) {
                //update if not selecting item in list
                suggestor.suggest();
                interval = 0;
              }
            }
          }
        }, 100);
      };
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. test-site/public/javascripts/suggestor.js

            setInterval( function() {
                if(interval < 5) {
                    interval = interval + 1;
                } else {
                    if($textArea.val() != inputText) {
                        if(!isFocusList && started && !suggestingSts) {
                            //リスト選択中でなければ更新
                            suggestor.suggest();
                            interval = 0;
                        }
                    }
                }
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * </ul>
       */
      static final class SmoothWarmingUp extends SmoothRateLimiter {
        private final long warmupPeriodMicros;
        /**
         * The slope of the line from the stable interval (when permits == 0), to the cold interval
         * (when permits == maxPermits)
         */
        private double slope;
    
        private double thresholdPermits;
        private double coldFactor;
    
        SmoothWarmingUp(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java

            final FaultTolerantClient client = new FaultTolerantClient();
            client.setRetryInterval(100);
            final TestClient testClient = new TestClient();
            testClient.exceptionCount = 4;
            testClient.interval = 100;
            final TestListener testListener = new TestListener();
            client.setCrawlerClient(testClient);
            client.setRequestListener(testListener);
            final String url = "http://test.com/";
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top