Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for modstat (0.52 sec)

  1. pkg/kubelet/eviction/helpers.go

    }
    
    // cachedStatsFunc returns a statsFunc based on the provided pod stats.
    func cachedStatsFunc(podStats []statsapi.PodStats) statsFunc {
    	uid2PodStats := map[string]statsapi.PodStats{}
    	for i := range podStats {
    		uid2PodStats[podStats[i].PodRef.UID] = podStats[i]
    	}
    	return func(pod *v1.Pod) (statsapi.PodStats, bool) {
    		stats, found := uid2PodStats[string(pod.UID)]
    		return stats, found
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    		}
    	}
    	return podSandboxStats
    }
    func getPodSandboxStatsStrictlyFromCRI(seed int, podSandbox *critest.FakePodSandbox) statsapi.PodStats {
    	podStats := statsapi.PodStats{
    		PodRef: statsapi.PodReference{
    			Name:      podSandbox.Metadata.Name,
    			UID:       podSandbox.Metadata.Uid,
    			Namespace: podSandbox.Metadata.Namespace,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. src/math/big/int_test.go

    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    		t.Errorf("ModSqrt returned inconsistent value %s", z)
    	}
    	sqChk.Sub(sq, mod)
    	z = sqrtChk.ModSqrt(&sqChk, mod)
    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    		t.Errorf("ModSqrt returned inconsistent value %s", z)
    	}
    
    	// test x aliasing z
    	z = sqrtChk.ModSqrt(sqrtChk.Set(sq), mod)
    	if z != &sqrtChk || z.Cmp(sqrt) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	tests := []struct {
    		desc          string
    		hasAddedPods  bool
    		podState      string
    		expectedFound bool // Found pod is added to DSW
    	}{
    		{
    			desc:          "HasAddedPods is false, ShouldPodRuntimeBeRemoved and ShouldPodContainerBeTerminating are both true",
    			hasAddedPods:  false,
    			podState:      Removed,
    			expectedFound: false, // Pod should not be added to DSW
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // The dependencies of the roots will be loaded lazily at the first call to the
    // Graph method.
    //
    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    func (*fakeKubelet) ListPodStats(_ context.Context) ([]statsapi.PodStats, error) { return nil, nil }
    func (*fakeKubelet) ListPodStatsAndUpdateCPUNanoCoreUsage(_ context.Context) ([]statsapi.PodStats, error) {
    	return nil, nil
    }
    func (*fakeKubelet) ListPodCPUAndMemoryStats(_ context.Context) ([]statsapi.PodStats, error) {
    	return nil, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    			// that we can.
    			break
    		}
    
    		toAdd := make([]module.Version, 0, len(modAddedBy))
    		for m := range modAddedBy {
    			toAdd = append(toAdd, m)
    		}
    		gover.ModSort(toAdd) // to make errors deterministic
    
    		// We ran updateRequirements before resolving missing imports and it didn't
    		// make any changes, so we know that the requirement graph is already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Manage RuntimeClass resources.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Cache last per-container error message to reduce log spam
    	logReduction *logreduction.LogReduction
    
    	// PodState provider instance
    	podStateProvider podStateProvider
    
    	// Use RuntimeDefault as the default seccomp profile for all workloads.
    	seccompDefault bool
    
    	// MemorySwapBehavior defines how swap is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    		}
    		modFile := modFiles[0]
    		roots, direct = rootsFromModFile(MainModules.mustGetSingleMainModule(), modFile, withToolchainRoot)
    	}
    
    	gover.ModSort(roots)
    	rs := newRequirements(pruning, roots, direct)
    	return rs
    }
    
    type addToolchainRoot bool
    
    const (
    	omitToolchainRoot addToolchainRoot = false
    	withToolchainRoot                  = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	ClearCommBreak(handle Handle) (err error)
    //sys	ClearCommError(handle Handle, lpErrors *uint32, lpStat *ComStat) (err error)
    //sys	EscapeCommFunction(handle Handle, dwFunc uint32) (err error)
    //sys	GetCommState(handle Handle, lpDCB *DCB) (err error)
    //sys	GetCommModemStatus(handle Handle, lpModemStat *uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top