Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 168 for getPlugins (0.46 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    	ps.registry[name] = plugin
    }
    
    // getPlugin creates an instance of the named plugin.  It returns `false` if
    // the name is not known. The error is returned only when the named provider was
    // known but failed to initialize.  The config parameter specifies the io.Reader
    // handler of the configuration file for the cloud provider, or nil for no configuration.
    func (ps *Plugins) getPlugin(name string, config io.Reader) (Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            MavenSession session = createMavenSession(getProject("project-contributing-system-scope-plugin-dep"));
            MavenProject project = session.getCurrentProject();
            Plugin plugin = project.getPlugin("org.apache.maven.its.plugins:maven-it-plugin");
    
            RepositoryRequest repositoryRequest = new DefaultRepositoryRequest();
            repositoryRequest.setLocalRepository(getLocalRepository());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

                val accessorsClass = loadClass(className)
                assertThat(
                    accessorsClass.declaredMethods.map { it.name },
                    hasItems("getMy", "getOwn", "getPlugin")
                )
    
                val expectedPluginSpec = mock<PluginDependencySpec>()
                val plugins = mock<PluginDependenciesSpec> {
                    on { id(any()) } doReturn expectedPluginSpec
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalProjectConfigurationResult.java

        /**
         * @since 5.1
         */
        interface InternalPluginApplicationResult {
    
            /**
             * Returns the identifier of this plugin.
             */
            InternalPluginIdentifier getPlugin();
    
            /**
             * Returns the total configuration time of this plugin.
             */
            Duration getTotalConfigurationTime();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            return source;
        }
    
        public String getExecutionId() {
            return executionId;
        }
    
        public Plugin getPlugin() {
            if (mojoDescriptor != null) {
                return mojoDescriptor.getPluginDescriptor().getPlugin();
            }
    
            return plugin;
        }
    
        public MojoDescriptor getMojoDescriptor() {
            return mojoDescriptor;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/CorePluginUseIntegrationSpec.groovy

                    ++i
                }
                plugins.withId("$UNQUALIFIED_JAVA") {
                    ++i
                }
                assert i == 2
    
                assert plugins.getPlugin("$QUALIFIED_JAVA")
                assert plugins.getPlugin("$UNQUALIFIED_JAVA")
            """
    
            then:
            succeeds "help"
    
            where:
            pluginId << [QUALIFIED_JAVA, UNQUALIFIED_JAVA]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

                    new PluginParameterExpressionEvaluatorV4(session, null, exec).evaluate("${mojo.plugin.descriptor}");
    
            System.out.println("Result: " + result);
    
            assertSame(
                    exec.getPlugin().getDescriptor(),
                    result,
                    "${mojo.plugin.descriptor} expression does not return plugin descriptor.");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/CycleDetectedInPluginGraphException.java

            super("A cycle was detected in the component graph of the plugin: " + plugin.getArtifactId());
    
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. pkg/volume/local/local_test.go

    	testPodPath                       = "pods/poduid/volumeDevices/kubernetes.io~local-volume"
    	testBlockFormattingToFSGlobalPath = "plugins/kubernetes.io/local-volume/mounts/pvA"
    )
    
    func getPlugin(t *testing.T) (string, volume.VolumePlugin) {
    	tmpDir, err := utiltesting.MkTmpdir("localVolumeTest")
    	if err != nil {
    		t.Fatalf("can't make a temp dir: %v", err)
    	}
    
    	plugMgr := volume.VolumePluginMgr{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/internal/DefaultPluginApplicationResult.java

            this.plugin = plugin;
            this.totalConfigurationTime = totalConfigurationTime;
        }
    
        @Override
        public PluginIdentifier getPlugin() {
            return plugin;
        }
    
        @Override
        public Duration getTotalConfigurationTime() {
            return totalConfigurationTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top