Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for stdat (0.25 sec)

  1. cmd/metrics-v2.go

    					Value:          stat.Failed.LastMinute.Count,
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    					Description:    getRepFailedBytesLastHourMD(clusterMetricNamespace),
    					Value:          float64(stat.Failed.LastHour.Bytes),
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    rsion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"round(sum(irate(istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"refId":"A","step":4}],"title":"Global Request Volume","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31, 120, 193)","mode":"fixed"},"mappings":[{"options":{"match":"null","result":{"text":"N/A"}},"type":"special"}],"thresholds":{"mode...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    		}
    	}
    	for p, stat := range sinfo.PolicyStats {
    		for dID, st := range stat {
    			if st.PolicyMismatch || opts.Entity == madmin.SRPolicyEntity {
    				if _, ok := info.PolicyStats[p]; !ok {
    					info.PolicyStats[p] = make(map[string]madmin.SRPolicyStatsSummary, numSites)
    				}
    				info.PolicyStats[p][dID] = st.SRPolicyStatsSummary
    			}
    		}
    	}
    	for p, stat := range sinfo.ILMExpiryRulesStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	if GlobalKMS == nil {
    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    	stats := make([]madmin.KMS, 0, len(stat.Endpoints))
    	for endpoint, state := range stat.Endpoints {
    		stats = append(stats, madmin.KMS{
    			Status:   string(state),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    	// Validation failed. Compute a new description (in buf) and compiler ID (in h).
    	// For now, there are only at most two filenames in the stat information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		path = "./" + path
    	}
    	return path
    }
    
    var isDirCache par.Cache[string, bool]
    
    func isDir(path string) bool {
    	return isDirCache.Do(path, func() bool {
    		fi, err := fsys.Stat(path)
    		return err == nil && fi.IsDir()
    	})
    }
    
    // ResolveImportPath returns the true meaning of path when it appears in parent.
    // There are two different resolutions applied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    func (api objectAPIHandlers) SelectObjectContentHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "SelectObject")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	// Fetch object stat info.
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    	return f.result, nil
    }
    
    func (f *fakeSummaryProvider) GetCPUAndMemoryStats(ctx context.Context) (*statsapi.Summary, error) {
    	return f.result, nil
    }
    
    // newPodStats returns a pod stat where each container is using the specified working set
    // each pod must have a Name, UID, Namespace
    func newPodStats(pod *v1.Pod, podWorkingSetBytes uint64) statsapi.PodStats {
    	return statsapi.PodStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    		}
    	}
    	if ec.AltStatName != "" {
    		if ec.AltStatName != gc.AltStatName {
    			t.Errorf("Unexpected alt stat name want %s, got %s", ec.AltStatName, gc.AltStatName)
    		}
    	}
    }
    
    func verifyALPNOverride(t *testing.T, md *core.Metadata, tlsMode networking.ClientTLSSettings_TLSmode) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	go kubelet.volumeManager.Run(kubelet.sourcesReady, stopCh)
    	return stopCh
    }
    
    // dirExists returns true if the path exists and represents a directory.
    func dirExists(path string) bool {
    	s, err := os.Stat(path)
    	if err != nil {
    		return false
    	}
    	return s.IsDir()
    }
    
    // Sort pods by UID.
    type podsByUID []*v1.Pod
    
    func (p podsByUID) Len() int           { return len(p) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top