Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for GitTag (0.72 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/stats.go

    		},
    		[]string{"status"},
    	)
    )
    
    func init() {
    	legacyregistry.MustRegister(
    		requestLatency,
    		requestCount,
    		fetchCount,
    		activeFetchCount,
    	)
    }
    
    const (
    	hitTag  = "hit"
    	missTag = "miss"
    
    	fetchFailedTag = "error"
    	fetchOkTag     = "ok"
    
    	fetchInFlightTag = "in_flight"
    	fetchBlockedTag  = "blocked"
    )
    
    type statsCollector struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 18:49:09 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. pkg/wasm/monitoring.go

    	marshalFailure      = "marshal_failure"
    	unmarshalFailure    = "unmarshal_failure"
    	fetchFailure        = "fetch_failure"
    	missRemoteFetchHint = "miss_remote_fetch_hint"
    )
    
    var (
    	hitTag    = monitoring.CreateLabel("hit")
    	resultTag = monitoring.CreateLabel("result")
    
    	wasmCacheEntries = monitoring.NewGauge(
    		"wasm_cache_entries",
    		"number of Wasm remote fetch cache entries.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	iexportVersionGo1_18   = 2
    
    	iexportVersionCurrent = 2
    )
    
    type ident struct {
    	pkg  *types.Package
    	name string
    }
    
    const predeclReserved = 32
    
    type itag uint64
    
    const (
    	// Types
    	definedType itag = iota
    	pointerType
    	sliceType
    	arrayType
    	chanType
    	mapType
    	signatureType
    	structType
    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    func (c *LocalFileCache) getEntry(key cacheKey, ignoreResourceVersion bool) (*cacheEntry, string) {
    	cacheHit := false
    
    	c.mux.Lock()
    	defer func() {
    		c.mux.Unlock()
    		wasmCacheLookupCount.With(hitTag.Value(strconv.FormatBool(cacheHit))).Increment()
    	}()
    
    	if len(key.checksum) == 0 && strings.HasPrefix(key.downloadURL, ociURLPrefix) {
    		if d, err := name.NewDigest(key.downloadURL[len(ociURLPrefix):]); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top