Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _state_name (0.56 sec)

  1. src/html/template/state_string.go

    	_ = x[stateCSSDqURL-22]
    	_ = x[stateCSSSqURL-23]
    	_ = x[stateCSSURL-24]
    	_ = x[stateCSSBlockCmt-25]
    	_ = x[stateCSSLineCmt-26]
    	_ = x[stateError-27]
    	_ = x[stateDead-28]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/metrics/metrics.go

    func (c *totalPluginsCollector) CollectWithStability(ch chan<- metrics.Metric) {
    	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 {
    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/kubelet/volumemanager/metrics/metrics.go

    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)
    		}
    	}
    }
    
    func (c *totalVolumesCollector) getVolumeCount() volumeCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/metrics/metrics.go

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

    	_ = x[StateConnectionError-3]
    	_ = x[StateShutdown-4]
    }
    
    const stateName = "UnconnectedConnectingConnectedConnectionErrorShutdown"
    
    var stateIndex = [...]uint8{0, 11, 21, 30, 45, 53}
    
    func (i State) String() string {
    	if i >= State(len(stateIndex)-1) {
    		return "State(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return stateName[stateIndex[i]:stateIndex[i+1]]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// transition to StateClosed.
    	StateClosed
    )
    
    var stateName = map[ConnState]string{
    	StateNew:      "new",
    	StateActive:   "active",
    	StateIdle:     "idle",
    	StateHijacked: "hijacked",
    	StateClosed:   "closed",
    }
    
    func (c ConnState) String() string {
    	return stateName[c]
    }
    
    // serverHandler delegates to either the server's Handler or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top