Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 927 for pluginA (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.jar

    permissions and limitations * under the License. */ import org.apache.maven.plugin.AbstractMojo; /** * Does nothing. * * @goal addPluginArtifactMet * * @author Benjamin Bentmann */ public class TestMojo extends AbstractMojo { public void execute() { } } META-INF/maven/org.apache.maven.plugins/maven-plugin-plugin/pom.xml 4.0.0 org.apache.maven.plugins maven-plugin-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K 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. pkg/kubelet/cm/dra/plugin/plugin.go

    	}
    
    	pluginInstance := &plugin{
    		conn:                    nil,
    		endpoint:                endpoint,
    		highestSupportedVersion: highestSupportedVersion,
    		clientTimeout:           timeout,
    	}
    
    	// Storing endpoint of newly registered DRA Plugin into the map, where plugin name will be the key
    	// all other DRA components will be able to get the actual socket of DRA plugins by its name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-plugin-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
      <inceptionYear>2009</inceptionYear>
    
      <distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top