Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for frameworkruntime (0.18 sec)

  1. pkg/scheduler/framework/plugins/testing/testing.go

    	ctx context.Context,
    	tb testing.TB,
    	pf frameworkruntime.PluginFactory,
    	config runtime.Object,
    	sharedLister framework.SharedLister,
    ) framework.Plugin {
    	fh, err := frameworkruntime.NewFramework(ctx, nil, nil,
    		frameworkruntime.WithSnapshotSharedLister(sharedLister))
    	if err != nil {
    		tb.Fatalf("Failed creating framework runtime: %v", err)
    	}
    	p, err := pf(ctx, config, fh)
    	if err != nil {
    		tb.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    					return true, nil, tt.injectErr
    				}
    				gotBinding = action.(clienttesting.CreateAction).GetObject().(*v1.Binding)
    				return true, gotBinding, nil
    			})
    
    			fh, err := frameworkruntime.NewFramework(ctx, nil, nil, frameworkruntime.WithClientSet(client))
    			if err != nil {
    				t.Fatal(err)
    			}
    			binder := &DefaultBinder{handle: fh}
    			status := binder.Bind(ctx, nil, testPod, testNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler_test.go

    	waitingPods := frameworkruntime.NewWaitingPodsMap()
    	fwk, err := tf.NewFramework(ctx,
    		registerPluginFuncs,
    		testSchedulerName,
    		frameworkruntime.WithClientSet(client),
    		frameworkruntime.WithInformerFactory(informerFactory),
    		frameworkruntime.WithEventRecorder(eventBroadcaster.NewRecorder(scheme.Scheme, testSchedulerName)),
    		frameworkruntime.WithWaitingPods(waitingPods),
    	)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. pkg/scheduler/profile/profile.go

    	opts = append(opts, frameworkruntime.WithEventRecorder(recorder))
    	return frameworkruntime.NewFramework(ctx, r, &cfg, opts...)
    }
    
    // Map holds frameworks indexed by scheduler name.
    type Map map[string]framework.Framework
    
    // NewMap builds the frameworks given by the configuration, indexed by name.
    func NewMap(ctx context.Context, cfgs []config.KubeSchedulerProfile, r frameworkruntime.Registry, recorderFact RecorderFactory,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 06 01:11:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/scheduler/scheduler.go

    		frameworkruntime.WithCaptureProfile(frameworkruntime.CaptureProfile(options.frameworkCapturer)),
    		frameworkruntime.WithParallelism(int(options.parallelism)),
    		frameworkruntime.WithExtenders(extenders),
    		frameworkruntime.WithMetricsRecorder(metricsRecorder),
    		frameworkruntime.WithWaitingPods(waitingPods),
    	)
    	if err != nil {
    		return nil, fmt.Errorf("initializing profiles: %v", err)
    	}
    
    	if len(profiles) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_plugins.go

    */
    
    package framework
    
    import (
    	"context"
    	"fmt"
    	"sync/atomic"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    // ErrReasonFake is a fake error message denotes the filter function errored.
    const ErrReasonFake = "Nodes failed the fake plugin"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/scheduler/profile/profile_test.go

    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    var fakeRegistry = frameworkruntime.Registry{
    	"QueueSort": newFakePlugin("QueueSort"),
    	"Bind1":     newFakePlugin("Bind1"),
    	"Bind2":     newFakePlugin("Bind2"),
    	"Another":   newFakePlugin("Another"),
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/preemption_test.go

    				ctx,
    				registeredPlugins, "",
    				frameworkruntime.WithPodNominator(internalqueue.NewPodNominator(informerFactory.Core().V1().Pods().Lister())),
    				frameworkruntime.WithInformerFactory(informerFactory),
    				frameworkruntime.WithParallelism(parallelism),
    				frameworkruntime.WithSnapshotSharedLister(internalcache.NewSnapshot(tt.testPods, tt.nodes)),
    				frameworkruntime.WithLogger(logger),
    			)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	waitingPods := frameworkruntime.NewWaitingPodsMap()
    
    	fwk, _ := tf.NewFramework(
    		ctx,
    		fns,
    		testSchedulerName,
    		frameworkruntime.WithClientSet(client),
    		frameworkruntime.WithEventRecorder(recorder),
    		frameworkruntime.WithInformerFactory(informerFactory),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			f, err := tf.NewFramework(ctx, registeredPlugins, "",
    				frameworkruntime.WithClientSet(cs),
    				frameworkruntime.WithEventRecorder(&events.FakeRecorder{}),
    				frameworkruntime.WithInformerFactory(informerFactory),
    				frameworkruntime.WithPodNominator(internalqueue.NewPodNominator(informerFactory.Core().V1().Pods().Lister())),
    				frameworkruntime.WithExtenders(extenders),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top