Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,615 for pluginA (0.23 sec)

  1. 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)
  2. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

    gin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  3. test-site/project/plugins.sbt

    resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
    
    // The Play plugin
    addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.8")
    
    // web plugins
    
    addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
    
    addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.0")
    
    addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.1")
    
    addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.1")
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 534 bytes
    - Viewed (0)
  4. 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)
  5. maven-core/plugin-manager.txt

     *
     * h3. lookup the plugin with a configuration
     *
     * h3. execute the plugin
     *
     * h3. plugins may have to deal with particular actions when a plugin is - installed - loaded -
     * unloaded - update - uninstalled
     *
     * h3. plugins should be able to have specific metadata for a plugin model and that be translated -
     * dependencies - resources - configuration - extension points of plugins
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/Plugin.java

    package org.gradle.api;
    
    /**
     * <p>A <code>Plugin</code> represents an extension to Gradle. A plugin applies some configuration to a target object.
     * Usually, this target object is a {@link org.gradle.api.Project}, but plugins can be applied to any type of
     * objects.</p>
     *
     * @param <T> The type of object which this plugin can configure.
     */
    public interface Plugin<T> {
        /**
         * Apply this plugin to the given target object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml

      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>test</groupId>
              <artifactId>managed-duplicate</artifactId>
            </plugin>
            <plugin>
              <groupId>test</groupId>
              <artifactId>managed-duplicate</artifactId>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
            <groupId>test</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 31 11:27:00 UTC 2010
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/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: Sat Nov 09 12:45:14 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top