Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for le (0.13 sec)

  1. src/cmd/asm/internal/arch/arm.go

    	"PL":  arm.C_SCOND_PL,
    	"VS":  arm.C_SCOND_VS,
    	"VC":  arm.C_SCOND_VC,
    	"HI":  arm.C_SCOND_HI,
    	"LS":  arm.C_SCOND_LS,
    	"GE":  arm.C_SCOND_GE,
    	"LT":  arm.C_SCOND_LT,
    	"GT":  arm.C_SCOND_GT,
    	"LE":  arm.C_SCOND_LE,
    	"AL":  arm.C_SCOND_NONE,
    	"U":   arm.C_UBIT,
    	"S":   arm.C_SBIT,
    	"W":   arm.C_WBIT,
    	"P":   arm.C_PBIT,
    	"PW":  arm.C_WBIT | arm.C_PBIT,
    	"WP":  arm.C_WBIT | arm.C_PBIT,
    	"F":   arm.C_FBIT,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  2. cmd/metrics-v3-api.go

    		"Total number of requests canceled by the client", "name", "type")
    
    	apiRequestsTTFBSecondsDistributionMD = NewCounterMD(apiRequestsTTFBSecondsDistribution,
    		"Distribution of time to first byte across API calls", "name", "type", "le")
    
    	apiTrafficSentBytesMD = NewCounterMD(apiTrafficSentBytes,
    		"Total number of bytes sent", "type")
    	apiTrafficRecvBytesMD = NewCounterMD(apiTrafficRecvBytes,
    		"Total number of bytes received", "type")
    )
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  3. istioctl/pkg/metrics/metrics_test.go

    				&prometheus_model.Sample{Value: 2.5},
    			},
    			"histogram_quantile(0.900000, sum(rate(istio_request_duration_milliseconds_bucket{destination_workload=~\"details.*\", destination_workload_namespace=~\".*\",reporter=\"destination\"}[1m0s])) by (le))": prometheus_model.Vector{ // nolint: lll
    				&prometheus_model.Sample{Value: 4.5},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Oct 25 02:07:44 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  4. istioctl/pkg/metrics/metrics.go

    	latencyQuery := fmt.Sprintf(`histogram_quantile(%f, sum(rate(%s_bucket{%s=~"%s.*", %s=~"%s.*",reporter="destination"}[%s])) by (le))`,
    		quantile, reqDur, destWorkloadLabel, workloadName, destWorkloadNamespaceLabel, workloadNamespace, duration)
    
    	letency, err := vectorValue(promAPI, latencyQuery)
    	if err != nil {
    		return time.Duration(0), err
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  5. cmd/object-api-utils_test.go

    		{"object", true},
    		{"The Shining Script <v1>.pdf", true},
    		{"Cost Benefit Analysis (2009-2010).pptx", true},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", true},
    		{"SHØRT", true},
    		{"f*le", true},
    		{"contains-^-caret", true},
    		{"contains-|-pipe", true},
    		{"contains-`-tick", true},
    		{"..test", true},
    		{".. test", true},
    		{". test", true},
    		{".test", true},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 23.4K bytes
    - Viewed (0)
  6. tests/associations_has_many_test.go

    	}
    
    	// test Replace
    	if err := tx.Model(&item).Association("Contents").Unscoped().Replace([]ItemContent{
    		{Name: "updated name", LanguageCode: "en"},
    		{Name: "ar updated name", LanguageCode: "ar"},
    		{Name: "le nom", LanguageCode: "fr"},
    	}); err != nil {
    		t.Errorf("failed to replace item content, got error: %v", err)
    	}
    
    	if count := tx.Model(&item).Association("Contents").Count(); count != 3 {
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Dec 15 08:36:08 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    				if *lp.Name == "api" && toLowerAPILabels {
    					labels[*lp.Name] = strings.ToLower(*lp.Value)
    				} else {
    					labels[*lp.Name] = *lp.Value
    				}
    			}
    			labels["le"] = fmt.Sprintf("%.3f", *b.UpperBound)
    			metric := MetricV2{
    				Description:    desc,
    				VariableLabels: labels,
    				Value:          float64(b.GetCumulativeCount()),
    			}
    			metrics = append(metrics, metric)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top