Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 863 for plugin (0.04 sec)

  1. 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: 2025-05-24 08:56
    - Last Modified: 2024-02-28 23:54
    - 1.7K bytes
    - Viewed (0)
  2. 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: 2025-05-26 08:04
    - Last Modified: 2025-05-24 12:52
    - 3.5K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin.go

    		// 1. We are being upgraded - `istio-cni` node agent pod is gone
    		// 2. This plugin was left in place to stall pod spawns until the
    		// replacement arrives.
    		// 3. This plugin can't contact the K8S API server (creds expired/invalid)
    		// 4. The pod this plugin would be blocking by returning this error
    		// *is* our replacement `istio-cni` pod (which would refresh our creds)
    		//
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-06 05:38
    - 12.8K bytes
    - Viewed (0)
  4. .teamcity/pluginData/Check/plugin-settings.xml

    bo <bo@TeamCity> 1621304116 +0200
    Registered: 2025-05-28 11:36
    - Last Modified: 2021-05-18 02:15
    - 2.2K bytes
    - Viewed (0)
  5. docs/iam/identity-management-plugin.md

    KEY:
    identity_plugin  enable Identity Plugin via external hook
    
    ARGS:
    MINIO_IDENTITY_PLUGIN_URL*          (url)       plugin hook endpoint (HTTP(S)) e.g. "http://localhost:8181/path/to/endpoint"
    MINIO_IDENTITY_PLUGIN_AUTH_TOKEN    (string)    authorization token for plugin hook endpoint
    MINIO_IDENTITY_PLUGIN_ROLE_POLICY*  (string)    policies to apply for plugin authorized users
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-05-27 00:58
    - 4.2K bytes
    - Viewed (0)
  6. docs/iam/access-management-plugin.md

    ## Quickstart
    
    To easily try out the feature, run the included demo Access Management Plugin program in this directory:
    
    ```sh
    go run access-manager-plugin.go
    ```
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-12-13 22:28
    - 4.4K bytes
    - Viewed (0)
  7. docs/iam/identity-manager-plugin.go

    Aditya Manthramurthy <******@****.***> 1714599073 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-01 21:31
    - 2.1K bytes
    - Viewed (0)
  8. docs/iam/access-manager-plugin.go

    Aditya Manthramurthy <******@****.***> 1707412520 -0800
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-02-08 17:15
    - 2.7K bytes
    - Viewed (0)
  9. build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

        vcsUrl = "https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-plugins"
    
        plugins.all {
    
            val plugin = this
    
            tags.addAll("Kotlin", "DSL")
    
            publishPluginsToTestRepository.configure {
                dependsOn("publish${plugin.name.capitalize()}PluginMarkerMavenPublicationToTestRepository")
            }
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-16 18:26
    - 6.1K bytes
    - Viewed (0)
  10. build-logic/integration-testing-kotlin/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    plugins {
        id("gradlebuild.integration-tests")
    }
    
    tasks.withType<IntegrationTest>().configureEach {
        // See AbstractKotlinIntegrationTest
        "kotlinDslTestsExtraRepo".let { propName ->
            System.getProperty(propName)?.let { systemProperty(propName, it) }
        }
    }
    
    dependencies {
        integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-12-30 14:53
    - 756 bytes
    - Viewed (0)
Back to top