Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 7,613 for Plugin2 (0.14 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue22175/plugin1.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "plugin"
    
    func F() int {
    	p2, err := plugin.Open("issue22175_plugin2.so")
    	if err != nil {
    		panic(err)
    	}
    	g, err := p2.Lookup("G")
    	if err != nil {
    		panic(err)
    	}
    	return g.(func() int)()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 390 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/project-dynamism/plugin-level-dep.pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>testing</groupId>
      <artifactId>plugin-level-dep</artifactId>
      <packaging>jar</packaging>
      <version>4.13.1</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.0.2</version>
            <dependencies>
              <dependency>
                <groupId>junit</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 776 bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
        </mailingList-->
      </mailingLists>
    
      <build>
        <plugins>
          <plugin>
            <groupId>inheritance.configuration</groupId>
            <artifactId>default</artifactId>
            <version>3.0</version>
            <configuration>
              <defaults>
                <parent>child</parent>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/missing-plugin-dependency-version.xml

      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <groupId>test</groupId>
                <artifactId>a</artifactId>
                <!-- version missing -->
              </dependency>
            </dependencies>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 27 11:09:54 UTC 2010
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/plugin1/plugin1.go

    }
    
    func UnexportedNameReuse() {
    	h := sameNameHolder{}
    	v := reflect.ValueOf(&h).Elem().Field(0)
    	newval := reflect.New(v.Type().Elem())
    	v.Set(newval)
    }
    
    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
    - 820 bytes
    - Viewed (0)
  6. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    maven-clean-plugin 2.0-rc2-SNAPSHOT maven-compiler-plugin 2.0-beta-2-SNAPSHOT maven-deploy-plugin 2.0-beta-1 true true maven-install-plugin 2.0-beta-2-SNAPSHOT maven-jar-plugin 2.0-rc2-SNAPSHOT maven-javadoc-plugin 2.0-beta-2-SNAPSHOT attach-javadocs jar true maven-resources-plugin 2.0-beta-2 maven-source-plugin 2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT false snapshots Maven Central Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Repository Switchboard...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    
    /**
     * Represents a maven plugin runtime
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Plugin {
    
        @Nonnull
        org.apache.maven.api.model.Plugin getModel();
    
        @Nonnull
        PluginDescriptor getDescriptor();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/plugins.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.fixtures
    
    
    fun pluginDescriptorEntryFor(id: String, implClass: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 816 bytes
    - Viewed (0)
  9. 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)
  10. maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java

            // Plugins
            // ----------------------------------------------------------------------
    
            List<Plugin> plugins = project.getBuildPlugins();
    
            // Plugin0 [plexus]
    
            String key = "org.apache.maven.plugins:maven-plexus-plugin";
    
            Plugin plugin = null;
            for (Plugin check : plugins) {
                if (key.equals(check.getKey())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top