Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for hm (0.03 sec)

  1. cmd/metrics-v3-cache.go

    		m := collectLocalMetrics(types, collectMetricsOpts{
    			hosts: map[string]struct{}{
    				globalLocalNodeName: {},
    			},
    		})
    
    		for _, hm := range m.ByHost {
    			if hm.Mem != nil && len(hm.Mem.Info.Addr) > 0 {
    				v = hm.Mem.Info
    				break
    			}
    		}
    
    		return
    	}
    
    	return cachevalue.NewFromFunc(1*time.Minute,
    		cachevalue.Opts{ReturnLastGood: true},
    		loadMemoryMetrics)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. cmd/metrics-resource.go

    	var types madmin.MetricType = madmin.MetricsDisk | madmin.MetricNet | madmin.MetricsMem | madmin.MetricsCPU
    
    	m := collectLocalMetrics(types, collectMetricsOpts{})
    	for _, hm := range m.ByHost {
    		if hm.Net != nil && len(hm.Net.NetStats.Name) > 0 {
    			stats := hm.Net.NetStats
    			labels := map[string]string{"interface": stats.Name}
    			updateResourceMetrics(interfaceSubsystem, interfaceRxBytes, float64(stats.RxBytes), labels, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/trace/jsontrace_test.go

    		}
    	}
    	return
    }
    
    func checkPlausibleHeapMetrics(t *testing.T, data format.Data) {
    	hms := heapMetrics(data)
    	var nonZeroAllocated, nonZeroNextGC bool
    	for _, hm := range hms {
    		if hm.Allocated > 0 {
    			nonZeroAllocated = true
    		}
    		if hm.NextGC > 0 {
    			nonZeroNextGC = true
    		}
    	}
    
    	if !nonZeroAllocated {
    		t.Errorf("nonZeroAllocated=%v, want true", nonZeroAllocated)
    	}
    	if !nonZeroNextGC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/validation/validation_test.go

    			ScaleUp: &autoscaling.HPAScalingRules{
    				Policies: []autoscaling.HPAScalingPolicy{{
    					Type:          autoscaling.HPAScalingPolicyType("hm"),
    					Value:         7,
    					PeriodSeconds: 8,
    				}},
    			},
    		},
    		msg: `spec.behavior.scaleUp.policies[0].type: Unsupported value: "hm": supported values: "Percent", "Pods"`,
    	}, {
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    			ScaleUp: &autoscaling.HPAScalingRules{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. pkg/kube/krt/collection.go

    	hm := func(ctx HandlerContext, i I) []O {
    		res := hf(ctx, i)
    		if res == nil {
    			return nil
    		}
    		return []O{*res}
    	}
    	o := buildCollectionOptions(opts...)
    	if o.name == "" {
    		o.name = fmt.Sprintf("Collection[%v,%v]", ptr.TypeName[I](), ptr.TypeName[O]())
    	}
    	return newManyCollection[I, O](c, hm, o)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/RegularImmutableMap.java

          return empty;
        }
        try {
          return fromEntryArrayCheckingBucketOverflow(n, entryArray, throwIfDuplicateKeys);
        } catch (BucketOverflowException e) {
          // probable hash flooding attack, fall back to j.u.HM based implementation and use its
          // implementation of hash flooding protection
          return JdkBackedImmutableMap.create(n, entryArray, throwIfDuplicateKeys);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	stringToSign := getStringToSignV2(req.Method, encodedResource, strings.Join(unescapedQueries, "&"), req.Header, expiresStr)
    	hm := hmac.New(sha1.New, []byte(secretAccessKey))
    	hm.Write([]byte(stringToSign))
    
    	// Calculate signature.
    	signature := base64.StdEncoding.EncodeToString(hm.Sum(nil))
    
    	query := req.URL.Query()
    	// Handle specially for Google Cloud Storage.
    	query.Set("AWSAccessKeyId", accessKeyID)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ludes(":-"))return!1;let r=Y2.prefixes().filter(n=>t.selector.includes(":"+n));return r.length>0?r:!1}};Wm.exports=Um});var Gt=v((h4,Ym)=>{l();var Q2=le(),Hm=class{constructor(e,t,r,n){this.unprefixed=e,this.prefixed=t,this.string=r||t,this.regexp=n||Q2.regexp(t)}check(e){return e.includes(this.string)?!!e.match(this.regexp):!1}};Ym.exports=Hm});var ke=v((m4,Jm)=>{l();var J2=Ut(),X2=Gt(),K2=ii(),Z2=le(),Qm=class extends J2{static save(e,t){let r=t.prop,n=[];for(let a in t._autoprefixerValues){let...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top