Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for unstable (0.27 sec)

  1. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    							{
    								NUMANodeAffinity: NewTestBitMask(0, 1),
    								Preferred:        false,
    							},
    						},
    					},
    				},
    			},
    			expected: true,
    		},
    		{
    			name:     "QOSClass set as Burstable. BestEffort Policy. More than one Preferred Affinity.",
    			qosClass: v1.PodQOSBurstable,
    			policy:   bePolicy,
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/podcgroupns.go

    	// - /kubepods/burstable/pod2c48913c-b29f-11e7-9350-020968147796/9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961
    	// - /docker/8d461fa5765781bcf5f7eb192f101bc3103d4b932e26236f43feecfa20664f96/kubepods/besteffort/poddaa5c7ee-3484-4533-af39-3591564fd03e/aff34703e5e1f89443e9a1bffcc80f43f74d4808a2dd22c8f88c08547b323934
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/pod_container_manager_linux.go

    	var parentContainer CgroupName
    	switch podQOS {
    	case v1.PodQOSGuaranteed:
    		parentContainer = m.qosContainersInfo.Guaranteed
    	case v1.PodQOSBurstable:
    		parentContainer = m.qosContainersInfo.Burstable
    	case v1.PodQOSBestEffort:
    		parentContainer = m.qosContainersInfo.BestEffort
    	}
    	podContainer := GetPodCgroupNameSuffix(pod.UID)
    
    	// Get the absolute path of the cgroup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. docs/fr/docs/contributing.md

        Cela permet de s'assurer que si vous utilisez un programme terminal installé par ce paquet (comme `flit`), vous utilisez celui de votre environnement local et pas un autre qui pourrait être installé globalement.
    
    ### Flit
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/internal/src/pos.go

    func (p Pos) AbsFilename() string { return p.base.AbsFilename() }
    
    // FileIndex returns the file index of the position's base's absolute
    // filename within the PosTable that it was registered.
    func (p Pos) FileIndex() int { return p.base.FileIndex() }
    
    func (p Pos) String() string {
    	return p.Format(true, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    In order to operate, the link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html[XCTest] task type requires three pieces of information:
    - Where to find the built testable bundle (on macOS) or executable (on Linux) (property: link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html#org.gradle.nativeplatform.test.xctest.tasks.XCTest:testInstallDirectory[XCTest.getTestInstalledDirectory()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cgroup_manager_linux.go

    	return strings.Replace(part, "_", "-", -1)
    }
    
    // cgroupName.ToSystemd converts the internal cgroup name to a systemd name.
    // For example, the name {"kubepods", "burstable", "pod1234-abcd-5678-efgh"} becomes
    // "/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod1234_abcd_5678_efgh.slice"
    // This function always expands the systemd name into the cgroupfs form. If only
    // the last part is needed, use path.Base(...) on it to discard the rest.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/sym.go

    func (ctxt *Link) traverseSyms(flag traverseFlag, fn func(*LSym)) {
    	fnNoNil := func(s *LSym) {
    		if s != nil {
    			fn(s)
    		}
    	}
    	lists := [][]*LSym{ctxt.Text, ctxt.Data}
    	files := ctxt.PosTable.FileTable()
    	for _, list := range lists {
    		for _, s := range list {
    			if flag&traverseDefs != 0 {
    				fn(s)
    			}
    			if flag&traverseRefs != 0 {
    				for _, r := range s.R {
    					fnNoNil(r.Sym)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    	// gcEnabled is an internal copy of gcBlackenEnabled that determines
    	// whether the limiter tracks total assist time.
    	//
    	// gcBlackenEnabled isn't used directly so as to keep this structure
    	// unit-testable.
    	gcEnabled bool
    
    	// transitioning is true when the GC is in a STW and transitioning between
    	// the mark and sweep phases.
    	transitioning bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. pkg/kubelet/container/helpers_test.go

    	type testCase struct {
    		name         string
    		container    *v1.Container
    		expectedHash uint64
    	}
    
    	tests := []testCase{
    		{
    			"Burstable pod with CPU policy restart required",
    			&v1.Container{
    				Name:  "foo",
    				Image: "bar",
    				Resources: v1.ResourceRequirements{
    					Limits:   v1.ResourceList{v1.ResourceCPU: cpu200m, v1.ResourceMemory: mem200M},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top