Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for pluginFactory (0.25 sec)

  1. pkg/volume/flexvolume/probe.go

    	mutex          sync.Mutex
    	pluginDir      string         // Flexvolume driver directory
    	runner         exec.Interface // Interface to use for execing flex calls
    	watcher        utilfs.FSWatcher
    	factory        PluginFactory
    	fs             utilfs.Filesystem
    	probeAllNeeded bool
    	eventsMap      map[string]volume.ProbeOperation // the key is the driver directory path, the value is the corresponding operation
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	return newPluginWithListers(ctx, t, nil, nil, nil)
    }
    
    func newPluginWithListers(ctx context.Context, t *testing.T, pods []*v1.Pod, nodes []*v1.Node, pvcs []*v1.PersistentVolumeClaim) framework.Plugin {
    	pluginFactory := func(ctx context.Context, plArgs runtime.Object, fh framework.Handle) (framework.Plugin, error) {
    		return New(ctx, plArgs, fh, feature.Features{})
    	}
    	snapshot := cache.NewSnapshot(pods, nodes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/flexvolume_test.go

    }
    
    func GetDynamicPluginProberWithoutWatcher(pluginDir string, runner exec.Interface) volume.DynamicPluginProber {
    	return &flexVolumeProber{
    		pluginDir: pluginDir,
    		watcher:   newFakeWatcher(),
    		factory:   pluginFactory{},
    		runner:    runner,
    		fs:        &utilfs.DefaultFs{},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/probe_test.go

    	return
    }
    
    // Fake Flexvolume plugin
    type fakePluginFactory struct {
    	errorDriver string // the name of the driver in error
    }
    
    var _ PluginFactory = fakePluginFactory{}
    
    func (m fakePluginFactory) NewFlexVolumePlugin(_, driverName string, _ exec.Interface) (volume.VolumePlugin, error) {
    	if driverName == m.errorDriver {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    // hence there are no references to it from the kubernetes scheduler code base.
    func WithPlugin(name string, factory runtime.PluginFactory) Option {
    	return func(registry runtime.Registry) error {
    		return registry.Register(name, factory)
    	}
    }
    
    // Setup creates a completed config and a scheduler based on the command args and options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_extender.go

    	}
    	return &result, nil
    }
    
    type node2PrioritizerPlugin struct{}
    
    // NewNode2PrioritizerPlugin returns a factory function to build node2PrioritizerPlugin.
    func NewNode2PrioritizerPlugin() frameworkruntime.PluginFactory {
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &node2PrioritizerPlugin{}, nil
    	}
    }
    
    // Name returns name of the plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    	return f.isPrioritizer
    }
    
    func (f *fakeExtender) IsFilter() bool {
    	return f.isFilter
    }
    
    type falseMapPlugin struct{}
    
    func newFalseMapPlugin() frameworkruntime.PluginFactory {
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &falseMapPlugin{}, nil
    	}
    }
    
    func (pl *falseMapPlugin) Name() string {
    	return "FalseMap"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            List<String> aliases = classNode.aliases
                .stream()
                .sorted()
                .collect(toList());
            writeLn("public static class " + pluginClassName + " extends PluginFactory " + interfaces + "{");
            indent(() -> {
                writeSubAccessorFieldsOf(classNode, AccessorKind.plugin);
                writeLn();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.17.md

    - Fixed an issue that the correct PluginConfig.Args is not passed to the corresponding PluginFactory in kube-scheduler when multiple PluginConfig items are defined. ([#82483](https://github.com/kubernetes/kubernetes/pull/82483), [@everpeace](https://github.com/everpeace))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    - Fix an issue that the correct PluginConfig.Args is not passed to the corresponding PluginFactory in kube-scheduler when multiple PluginConfig items are defined. ([#82483](https://github.com/kubernetes/kubernetes/pull/82483), [@everpeace](https://github.com/everpeace))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top