Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for headMap (0.04 sec)

  1. android/guava/src/com/google/common/collect/TreeRangeMap.java

              if (subRange.isEmpty()) {
                return emptyIterator();
              }
              final Iterator<RangeMapEntry<K, V>> backingItr =
                  entriesByLowerBound
                      .headMap(subRange.upperBound, false)
                      .descendingMap()
                      .values()
                      .iterator();
              return new AbstractIterator<Entry<Range<K>, V>>() {
    
                @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

      }
    
      public void testRowKeyMapHeadMap() {
        sortedTable = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        Map<String, Map<Integer, Character>> map = sortedTable.rowMap().headMap("cat");
        assertEquals(1, map.size());
        assertEquals(ImmutableMap.of(1, 'b'), map.get("bar"));
        map.clear();
        assertTrue(map.isEmpty());
        assertEquals(singleton("foo"), sortedTable.rowKeySet());
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

              if (subRange.isEmpty()) {
                return emptyIterator();
              }
              final Iterator<RangeMapEntry<K, V>> backingItr =
                  entriesByLowerBound
                      .headMap(subRange.upperBound, false)
                      .descendingMap()
                      .values()
                      .iterator();
              return new AbstractIterator<Entry<Range<K>, V>>() {
    
                @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

            + override.byName.withProperty('custom.hidden', true),
          ]),
      },
    
      heatmap: {
        local heatmap = g.panel.heatmap,
        local options = heatmap.options,
    
        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/queries.libsonnet

                sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)
              |||
            ) + q.withFormat('heatmap'),
    
          pushSize:
            self.query(
              '{{le}}',
              |||
                sum(rate(pilot_xds_config_size_bytes_bucket{}[1m])) by (le)
              |||
            ) + q.withFormat('heatmap'),
    
          pilotEvents: [
            self.query(
              '{{event}} {{type}}',
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot.libsonnet

            |||
          ),
          panels.heatmap.base(
            'Push Time', queries.pushTime, |||
              Count of active and pending proxies managed by each instance.
              Pending is expected to converge to zero.
            |||
          ),
          panels.heatmap.bytes(
            'Push Size', queries.pushSize, |||
              Size of each xDS push.
            |||
          ),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.gen.json

                   },
                   "expr": "sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)",
                   "format": "heatmap",
                   "legendFormat": "{{le}}"
                }
             ],
             "title": "Push Time",
             "type": "heatmap"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/lib/output.json

                         "legendFormat": "{{cluster}} - {{namespace}}\n"
                      }
                   ],
                   "title": "Workqueue Waiting Duration Over Time",
                   "type": "heatmap"
                },
                {
                   "datasource": {
                      "type": "datasource",
                      "uid": "-- Mixed --"
                   },
                   "fieldConfig": {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top