Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for CustomPlugin (0.14 sec)

  1. platforms/extensibility/unit-test-fixtures/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-plugin.properties

    implementation-class=org.gradle.testfixtures.CustomPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 57 bytes
    - Viewed (0)
  2. subprojects/core/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-plugin.properties

    implementation-class=org.gradle.api.internal.plugins.CustomPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 66 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/ParameterizedToolingModelCrossVersionSpec.groovy

                    String getValue() {
                        return "myValue";
                    }
                }
    
                class CustomPlugin implements Plugin<Project> {
                    @Inject
                    CustomPlugin(ToolingModelBuilderRegistry registry) {
                        registry.register(new CustomBuilder());
                        registry.register(new CustomBuilder2());
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomToolingModelCrossVersionSpec.groovy

            return modelName == '${CustomModel.name}'
        }
        Object buildAll(String modelName, Project project) {
            return new CustomModel(50)
        }
    }
    
    class CustomPlugin implements Plugin<Project> {
        @Inject
        CustomPlugin(ToolingModelBuilderRegistry registry) {
            registry.register(new CustomBuilder())
        }
    
        public void apply(Project project) {
        }
    }
    """
            withBuildScriptIn("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/v1/default_plugins.go

    			if customPlugin, ok := enabledCustomPlugins[defaultEnabledPlugin.Name]; ok {
    				logger.Info("Default plugin is explicitly re-configured; overriding", "plugin", defaultEnabledPlugin.Name)
    				// Update the default plugin in place to preserve order.
    				defaultEnabledPlugin = customPlugin.plugin
    				replacedPluginIndex.Insert(customPlugin.index)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/extensibility/unit-test-fixtures/src/test/groovy/org/gradle/testfixtures/ProjectBuilderTest.groovy

            project.gradle.gradleUserHomeDir == project.file('userHome')
        }
    
        def canApplyACustomPluginUsingClass() {
            when:
            def project = buildProject()
            project.apply plugin: CustomPlugin
    
            then:
            project.tasks.hello instanceof DefaultTask
        }
    
        def canApplyACustomPluginById() {
            when:
            def project = buildProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top