Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,613 for Plugin2 (0.12 sec)

  1. build-logic/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: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/validate-external-gradle-plugin.gradle.kts

     * it checks the plugins *applied to* the current build.
     */
    gradle.beforeProject {
        val lifecycleTask = project.tasks.register("validateExternalPlugins")
        project.plugins.configureEach { configurePluginValidation(project, lifecycleTask, javaClass) }
    }
    
    fun configurePluginValidation(
        project: Project,
        lifecycleTask: TaskProvider<Task>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. samples/wasm_modules/header_injector/plugin.cc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    #include "plugin.h"
    
    #ifndef INJECTION_VERSION
    #error INJECTION_VERSION must be defined
    #endif // INJECTION_VERSION
    
    #define xstr(s) str(s)
    #define str(s) #s
    
    // Boilderplate code to register the extension implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

                - Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
                - Included Builds (No included builds contain this plugin)
                - Plugin Repositories (could not resolve plugin artifact 'org.example.foo:org.example.foo.gradle.plugin:1.1')
                  Searched in the following repositories:
                    ${repoType}(${repoA.uri})
                    ${repoType}2(${repoB.uri})
            """.stripIndent().trim())
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/groovy/Plugin.groovy.template

    import org.gradle.api.Project
    import org.gradle.api.Plugin
    
    /**
     * A simple 'hello world' plugin.
     */
    class ${className.javaIdentifier} implements Plugin<Project> {
        void apply(Project project) {
            // Register a task
            project.tasks.register("greeting") {
                doLast {
                    println("Hello from plugin '${pluginId.value}'")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 445 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/kotlin/Plugin.kt.template

    import org.gradle.api.Project
    import org.gradle.api.Plugin
    
    /**
     * A simple 'hello world' plugin.
     */
    class ${className.javaIdentifier}: Plugin<Project> {
        override fun apply(project: Project) {
            // Register a task
            project.tasks.register("greeting") { task ->
                task.doLast {
                    println("Hello from plugin '${pluginId.value}'")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 457 bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/resources/META-INF/gradle-plugins/org.gradle.java-gradle-plugin.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 676 bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/plugin-defaults.go

    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type pluginDefaults flexVolumePlugin
    
    func logPrefix(plugin *flexVolumePlugin) string {
    	return "flexVolume driver " + plugin.driverName + ": "
    }
    
    func (plugin *pluginDefaults) GetVolumeName(spec *volume.Spec) (string, error) {
    	klog.V(4).Info(logPrefix((*flexVolumePlugin)(plugin)), "using default GetVolumeName for volume ", spec.Name())
    	return spec.Name(), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 13:42:07 UTC 2021
    - 1021 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/java/Plugin.java.template

    import org.gradle.api.Project;
    import org.gradle.api.Plugin;
    
    /**
     * A simple 'hello world' plugin.
     */
    public class ${className.javaIdentifier} implements Plugin<Project> {
        public void apply(Project project) {
            // Register a task
            project.getTasks().register("greeting", task -> {
                task.doLast(s -> System.out.println("Hello from plugin '${pluginId.value}'"));
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 471 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/precompiledScriptPlugins-externalPlugins/groovy/buildSrc/src/main/groovy/my-plugin.gradle

    plugins {
        id 'com.bmuschko.docker-remote-api'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
Back to top