Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for memorymanager (0.34 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package memorymanager
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    
    	"k8s.io/klog/v2"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"github.com/stretchr/testify/assert"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// owner: @cynepco3hahue(alukiano) @cezaryzukowski @k-wiatrzyk
    	// alpha: v1.21
    	// beta: v1.22
    	// Allows setting memory affinity for a container based on NUMA topology
    	MemoryManager featuregate.Feature = "MemoryManager"
    
    	// owner: @xiaoxubeii
    	// kep: https://kep.k8s.io/2570
    	// alpha: v1.22
    	//
    	// Enables kubelet to support memory QoS with cgroups v2.
    	MemoryQoS featuregate.Feature = "MemoryQoS"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/metrics.go

    		legacyregistry.MustRegister(RunPodSandboxErrors)
    		legacyregistry.MustRegister(CPUManagerPinningRequestsTotal)
    		legacyregistry.MustRegister(CPUManagerPinningErrorsTotal)
    		if utilfeature.DefaultFeatureGate.Enabled(features.MemoryManager) {
    			legacyregistry.MustRegister(MemoryManagerPinningRequestTotal)
    			legacyregistry.MustRegister(MemoryManagerPinningErrorsTotal)
    		}
    		legacyregistry.MustRegister(TopologyManagerAdmissionRequestsTotal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	// CPU Manager reconciliation period.
    	// Requires the CPUManager feature gate to be enabled.
    	CPUManagerReconcilePeriod metav1.Duration
    	// MemoryManagerPolicy is the name of the policy to use.
    	// Requires the MemoryManager feature gate to be enabled.
    	MemoryManagerPolicy string
    	// TopologyManagerPolicy is the name of the policy to use.
    	TopologyManagerPolicy string
    	// TopologyManagerScope represents the scope of topology hint generation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Migrated pkg/kubelet/cm/devicemanager to structured logging ([#99976](https://github.com/kubernetes/kubernetes/pull/99976), [@knabben](https://github.com/knabben)) [SIG Instrumentation and Node]
    - Migrated pkg/kubelet/cm/memorymanager to structured logging ([#99974](https://github.com/kubernetes/kubernetes/pull/99974), [@knabben](https://github.com/knabben)) [SIG Instrumentation and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.process.internal.health.memory.MemoryManager> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (MemoryManager.java:0)
    Class <org.gradle.process.internal.health.memory.NativeOsMemoryInfo> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NativeOsMemoryInfo.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"memoryManagerPolicy": {
    						SchemaProps: spec.SchemaProps{
    							Description: "memoryManagerPolicy is the name of the policy to use by memory manager. Requires the MemoryManager feature gate to be enabled. Default: \"none\"",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"topologyManagerPolicy": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top