Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,417 for pluginAB (0.13 sec)

  1. src/cmd/cgo/internal/testplugin/plugin_test.go

    	so, err := os.ReadFile("plugin2.so")
    	if err != nil {
    		log.Panic(err)
    	}
    	if err := os.WriteFile("plugin2-dup.so", so, 0444); err != nil {
    		log.Panic(err)
    	}
    	prettyPrintf("cp plugin2.so plugin2-dup.so\n")
    
    	goCmd(nil, "build", "-buildmode=plugin", "-o=sub/plugin1.so", "./sub/plugin1")
    	goCmd(nil, "build", "-buildmode=plugin", "-o=unnamed1.so", "./unnamed1/main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [[sec:types_of_plugins]]
    == Types of plugins
    
    Plugins can be implemented as *binary plugins*, *precompiled script plugins*, or *script plugins*:
    
    Binary Plugins :: Binary plugins are compiled plugins typically written in Java or Kotlin DSL that are packaged as JAR files.
    They are applied to a project using the `plugins {}` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/v1/default_plugins_test.go

    			},
    			defaultPlugins: &v1.Plugins{
    				Filter: v1.PluginSet{
    					Enabled: []v1.Plugin{
    						{Name: "Plugin1"},
    						{Name: "Plugin2"},
    						{Name: "Plugin3"},
    					},
    				},
    			},
    			expectedPlugins: &v1.Plugins{
    				Filter: v1.PluginSet{
    					Enabled: []v1.Plugin{
    						{Name: "Plugin1", Weight: ptr.To[int32](2)},
    						{Name: "Plugin2"},
    						{Name: "Plugin3", Weight: ptr.To[int32](3)},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/resources/META-INF/maven/plugin.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plugin>
      <description>Maven Internal State-Management Plugins</description>
      <groupId>org.apache.maven.plugins.internal</groupId>
      <artifactId>maven-state-management</artifactId>
      <version>2.1</version>
      <goalPrefix>statemgmt</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/plugins.xml

        </plugin>
        <plugin id="codenarc" description="CodeNarc Plugin">
            <extends targetClass="org.gradle.api.Project" id="codenarc" extensionClass="org.gradle.api.plugins.quality.CodeNarcExtension"/>
        </plugin>
        <plugin id="pmd" description="PMD Plugin">
            <extends targetClass="org.gradle.api.Project" id="pmd" extensionClass="org.gradle.api.plugins.quality.PmdExtension"/>
        </plugin>
        <plugin id="jacoco" description="JaCoCo Plugin">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginId.java

     */
    
    package org.gradle.plugin.use;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * A description of a plugin.
     *
     * @since 3.5
     */
    @HasInternalProtocol
    public interface PluginId {
    
        /**
         * The fully qualified plugin ID.
         */
        String getId();
    
        /**
         * The namespace of the plugin or {@code null} if the ID contains no {@code .}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. pkg/volume/plugins.go

    		klog.ErrorS(err, "Error initializing dynamic plugin prober")
    		pm.prober = &dummyPluginProber{}
    	}
    
    	if pm.plugins == nil {
    		pm.plugins = map[string]VolumePlugin{}
    	}
    	if pm.probedPlugins == nil {
    		pm.probedPlugins = map[string]VolumePlugin{}
    	}
    
    	allErrs := []error{}
    	for _, plugin := range plugins {
    		name := plugin.GetPluginName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. src/plugin/plugin.go

    // Package plugin implements loading and symbol resolution of Go plugins.
    //
    // A plugin is a Go main package with exported functions and variables that
    // has been built with:
    //
    //	go build -buildmode=plugin
    //
    // When a plugin is first opened, the init functions of all packages not
    // already part of the program are called. The main function is not run.
    // A plugin is only initialized once, and cannot be closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/sub/plugin1/plugin1.go

    import "C"
    
    import "testplugin/common"
    
    func F() int { return 17 }
    
    var FuncVar = func() {}
    
    func ReadCommonX() int {
    	FuncVar()
    	return common.X
    }
    
    func main() {
    	panic("plugin1.main called")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 395 bytes
    - Viewed (0)
Back to top