Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mtimeInterval (0.29 sec)

  1. src/cmd/go/internal/cache/cache.go

    			lastTrim := time.Unix(t, 0)
    			if d := now.Sub(lastTrim); d < trimInterval && d > -mtimeInterval {
    				return nil
    			}
    		}
    	}
    
    	// Trim each of the 256 subdirectories.
    	// We subtract an additional mtimeInterval
    	// to account for the imprecision of our "last used" mtimes.
    	cutoff := now.Add(-trimLimit - mtimeInterval)
    	for i := 0; i < 256; i++ {
    		subdir := filepath.Join(c.dir, fmt.Sprintf("%02x", i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. manifests/addons/values-grafana.yaml

            access: proxy
            isDefault: true
            jsonData:
              timeInterval: 15s
            editable: true
          - name: Loki
            type: loki
            orgId: 1
            url: http://loki:3100
            access: proxy
            isDefault: false
            jsonData:
              timeInterval: 5s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. docs/en/docs/js/custom.js

            array[currentIndex] = array[randomIndex];
            array[randomIndex] = temporaryValue;
        }
        return array;
    }
    
    async function showRandomAnnouncement(groupId, timeInterval) {
        const announceFastAPI = document.getElementById(groupId);
        if (announceFastAPI) {
            let children = [].slice.call(announceFastAPI.children);
            children = shuffle(children)
            let index = 0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

        datasources:
        - access: proxy
          editable: true
          isDefault: true
          jsonData:
            timeInterval: 15s
          name: Prometheus
          orgId: 1
          type: prometheus
          url: http://prometheus:9090
        - access: proxy
          editable: true
          isDefault: false
          jsonData:
            timeInterval: 5s
          name: Loki
          orgId: 1
          type: loki
          url: http://loki:3100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    namespace datasources: datasources.yaml: apiVersion: 1 datasources: - name: Prometheus type: prometheus orgId: 1 url: http://prometheus:9090 access: proxy isDefault: true jsonData: timeInterval: 5s editable: true - name: Loki type: loki orgId: 1 url: http://loki:3100 access: proxy isDefault: false jsonData: timeInterval: 5s editable: true manifests/addons/dashboards/pilot-dashboard.json { "annotations": { "list": [ { "builtIn": 1, "datasource": "-- Grafana --", "enable": true, "hide": true, "iconColor":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function tracingMetric(histograms,model){if(!model.stats.hasEventSizesinBytes)return;const eventStats=model.stats.allTraceEventStatsInTimeIntervals;eventStats.sort((a,b)=>a.timeInterval-b.timeInterval);const totalTraceBytes=eventStats.reduce((a,b)=>a+b.totalEventSizeinBytes,0);let maxEventCountPerSec=0;let maxEventBytesPerSec=0;const INTERVALS_PER_SEC=Math.floor(1000/model.stats.TIME_INTERVAL_SIZE_IN_MS);let runningEventNumPerSec=0;let...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top