Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 658 for Plugin2 (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

            buildFile """
                class Plugin1 implements Plugin {
                    void apply(project) {
                        project.rootProject.project(":b").apply(plugin: Plugin2)
                    }
                }
                class Plugin2 implements Plugin {
                    void apply(project) {
    
                    }
                }
    
                project(":a").apply plugin: Plugin1
            """
            succeeds("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

                "gradle-workers-runtime",
                "gradle-dependency-management-runtime",
                "gradle-plugin-use-runtime",
                "gradle-tooling-api-builders-runtime",
                "gradle-configuration-cache-runtime",
                "gradle-unit-test-fixtures-runtime",
                "plugin1-runtime",
                "plugin2-runtime"
            ]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    			setRecommendedPluginOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    			setDefaultOffPlugins:      sets.Set[string]{},
    		},
    
    		// scenario 3: use default off plugins and specified by enable-admission-plugins with RecommendedPluginOrder
    		{
    			expectedPluginNames:       []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    			setRecommendedPluginOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/plugins.go

    	deny.Register(plugins) // DEPRECATED as no real meaning
    	eventratelimit.Register(plugins)
    	extendedresourcetoleration.Register(plugins)
    	gc.Register(plugins)
    	imagepolicy.Register(plugins)
    	limitranger.Register(plugins)
    	autoprovision.Register(plugins)
    	exists.Register(plugins)
    	noderestriction.Register(plugins)
    	nodetaint.Register(plugins)
    	podnodeselector.Register(plugins)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/plugins.go

    	// initialized later.
    
    	// Each plugin can make use of VolumeConfig.  The single arg to this func contains *all* enumerated
    	// options meant to configure volume plugins.  From that single config, create an instance of volume.VolumeConfig
    	// for a specific plugin and pass that instance to the plugin's ProbeVolumePlugins(config) func.
    
    	// HostPath recycling is for testing and development purposes only!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. plugin.xml

    		<get dest="${target.dir}">
    			<url url="${repo.url}/${plugin.groupId}/${plugin.name.prefix}${plugin.name}/${plugin.version}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip" />
    		</get>
    		<unzip dest="${plugins.dir}/${plugin.name}" src="${target.dir}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/plugin.go

    type PolicyHook = generic.PolicyHook[*Policy, *PolicyBinding, PolicyEvaluator]
    
    type Plugin struct {
    	*generic.Plugin[PolicyHook]
    }
    
    var _ admission.Interface = &Plugin{}
    var _ admission.ValidationInterface = &Plugin{}
    var _ initializer.WantsFeatures = &Plugin{}
    var _ initializer.WantsExcludedAdmissionResources = &Plugin{}
    
    func NewPlugin(_ io.Reader) *Plugin {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. cmd/kubelet/app/plugins.go

    	"k8s.io/kubernetes/pkg/volume/secret"
    )
    
    // ProbeVolumePlugins collects all volume plugins into an easy to use list.
    func ProbeVolumePlugins(featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by the kubelet binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    // limitations under the License.
    
    // Package plugin defines the plugin implementations that the main pprof driver requires.
    package plugin
    
    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	"github.com/google/pprof/profile"
    )
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer  Writer
    	Flagset FlagSet
    	Fetch   Fetcher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/plugin.go

    // NewMounter is part of the volume.VolumePlugin interface.
    func (plugin *flexVolumePlugin) NewMounter(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
    	return plugin.newMounterInternal(spec, pod, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    // newMounterInternal is the internal mounter routine to build the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top