Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pluginCount (0.19 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/templates/buildsrc-plugins/buildSrc/build.gradle

     * limitations under the License.
     */
    
    ext.pluginCount = 25
    ext.pluginNestLevel = 3
    
    ext.groupedPluginIds = (1..pluginCount).groupBy { (int) (it / pluginNestLevel) }.values()
    
    tasks.register('generatePluginSources') {
        inputs.property('pluginCount', pluginCount)
        def genDir = file("build/src/generated/java")
        outputs.dir genDir
    
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/metrics/metrics.go

    	for stateName, pluginCount := range c.getPluginCount() {
    		for socketPath, count := range pluginCount {
    			ch <- metrics.NewLazyConstMetric(totalPluginsDesc,
    				metrics.GaugeValue,
    				float64(count),
    				socketPath,
    				stateName)
    		}
    	}
    }
    
    func (c *totalPluginsCollector) getPluginCount() pluginCount {
    	counter := make(pluginCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 08 01:16:57 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/metrics/metrics.go

    	for nodeName, pluginCount := range nodeVolumeMap {
    		for pluginName, count := range pluginCount {
    			ch <- metrics.NewLazyConstMetric(inUseVolumeMetricDesc,
    				metrics.GaugeValue,
    				float64(count),
    				string(nodeName),
    				pluginName)
    		}
    	}
    
    	stateVolumeMap := collector.getTotalVolumesCount()
    	for stateName, pluginCount := range stateVolumeMap {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/metrics/metrics.go

    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    func (c *totalVolumesCollector) CollectWithStability(ch chan<- metrics.Metric) {
    	for stateName, pluginCount := range c.getVolumeCount() {
    		for pluginName, count := range pluginCount {
    			ch <- metrics.NewLazyConstMetric(totalVolumesDesc,
    				metrics.GaugeValue,
    				float64(count),
    				pluginName,
    				stateName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top