Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for updateStats (0.21 sec)

  1. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCgroupCPUAndMemoryStats", reflect.TypeOf((*MockProvider)(nil).GetCgroupCPUAndMemoryStats), cgroupName, updateStats)
    }
    
    // GetCgroupStats mocks base method.
    func (m *MockProvider) GetCgroupStats(cgroupName string, updateStats bool) (*v1alpha1.ContainerStats, *v1alpha1.NetworkStats, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    // getCgroupInfo returns the information of the container with the specified
    // containerName from cadvisor.
    func getCgroupInfo(cadvisor cadvisor.Interface, containerName string, updateStats bool) (*cadvisorapiv2.ContainerInfo, error) {
    	var maxAge *time.Duration
    	if updateStats {
    		age := 0 * time.Second
    		maxAge = &age
    	}
    	infoMap, err := cadvisor.ContainerInfoV2(containerName, cadvisorapiv2.RequestOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/provider_test.go

    var (
    	timestamp    = time.Now()
    	creationTime = timestamp.Add(-5 * time.Minute)
    )
    
    func TestGetCgroupStats(t *testing.T) {
    	const (
    		cgroupName        = "test-cgroup-name"
    		containerInfoSeed = 1000
    		updateStats       = false
    	)
    
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    	var (
    		mockCadvisor     = cadvisortest.NewMockInterface(mockCtrl)
    		mockPodManager   = new(kubepodtest.MockManager)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager.go

    	}
    
    	klog.V(3).InfoS("FileSystem detection", "DedicatedImageFs", m.dedicatedImageFs, "SplitImageFs", m.splitContainerImageFs)
    	activePods := podFunc()
    	updateStats := true
    	summary, err := m.summaryProvider.Get(ctx, updateStats)
    	if err != nil {
    		klog.ErrorS(err, "Eviction manager: failed to get summary stats")
    		return nil, nil
    	}
    
    	if m.clock.Since(m.thresholdsLastUpdated) > notifierRefreshInterval {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. cmd/http-stats.go

    	serverStats.TotalS3Canceled = ServerHTTPAPIStats{
    		APIStats: st.totalS3Canceled.Load(toLowerKeys),
    	}
    	return serverStats
    }
    
    // Update statistics from http request and response data
    func (st *HTTPStats) updateStats(api string, w *xhttp.ResponseRecorder) {
    	st.totalS3Requests.Inc(api)
    
    	// Increment the prometheus http request response histogram with appropriate label
    	if api == apiGetObject {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. cmd/handler-utils.go

    		f.ServeHTTP(w, r)
    		globalHTTPStats.currentS3Requests.Dec(api)
    
    		tc, _ := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
    		if tc != nil {
    			globalHTTPStats.updateStats(api, tc.ResponseRecorder)
    			globalConnStats.incS3InputBytes(int64(tc.RequestRecorder.Size()))
    			globalConnStats.incS3OutputBytes(int64(tc.ResponseRecorder.Size()))
    
    			if countBktStat {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/internal/fuzz/fuzz.go

    			stop(err)
    			activeWorkers--
    			if activeWorkers == 0 {
    				return fuzzErr
    			}
    
    		case result := <-c.resultC:
    			// Received response from worker.
    			if stopping {
    				break
    			}
    			c.updateStats(result)
    
    			if result.crasherMsg != "" {
    				if c.warmupRun() && result.entry.IsSeed {
    					target := filepath.Base(c.opts.CorpusDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2.go

    			deleteFromActiveList(cronJob, j.UID)
    			updateStatus = true
    		case err != nil:
    			return nil, updateStatus, err
    		}
    		// the job is missing in the lister but found in api-server
    	}
    
    	if cronJob.DeletionTimestamp != nil {
    		// The CronJob is being deleted.
    		// Don't do anything other than updating status.
    		return nil, updateStatus, nil
    	}
    
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	managedStatus map[schema.GroupResource]*updateStatus
    }
    
    type updateStatus struct {
    	done    bool
    	lastErr error
    }
    
    // NewDefaultManager creates a new defaultManager.
    func NewDefaultManager() Manager {
    	s := &defaultManager{}
    	s.completed.Store(false)
    	s.managedResourceInfos = make(map[*ResourceInfo]struct{})
    	s.managedStatus = make(map[schema.GroupResource]*updateStatus)
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top