Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for NewFramework (0.11 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    
    			state := framework.NewCycleState()
    			snapshot := cache.NewSnapshot(nil, test.nodes)
    			fh, _ := runtime.NewFramework(ctx, nil, nil, runtime.WithSnapshotSharedLister(snapshot))
    
    			p, err := New(ctx, nil, fh, feature.Features{})
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    			informerFactory := informers.NewSharedInformerFactory(client, 0)
    			opts := []runtime.Option{
    				runtime.WithClientSet(client),
    				runtime.WithInformerFactory(informerFactory),
    			}
    			fh, err := runtime.NewFramework(ctx, nil, nil, opts...)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			args := item.args
    			if args == nil {
    				// default args if the args is not specified in test cases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    
    			state := framework.NewCycleState()
    			fh, _ := runtime.NewFramework(ctx, nil, nil, runtime.WithSnapshotSharedLister(cache.NewSnapshot(nil, test.nodes)))
    			p, err := New(ctx, &test.args, fh)
    			if err != nil {
    				t.Fatalf("Creating plugin: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
Back to top