Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for pluginManager (0.21 sec)

  1. pkg/controller/volume/attachdetach/metrics/metrics.go

    	pvLister corelisters.PersistentVolumeLister,
    	podLister corelisters.PodLister,
    	asw cache.ActualStateOfWorld,
    	dsw cache.DesiredStateOfWorld,
    	pluginMgr *volume.VolumePluginMgr,
    	csiMigratedPluginManager csimigration.PluginManager,
    	intreeToCSITranslator csimigration.InTreeToCSITranslator) {
    	registerMetrics.Do(func() {
    		legacyregistry.CustomMustRegister(newAttachDetachStateCollector(pvcLister,
    			podLister,
    			pvLister,
    			asw,
    			dsw,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

            }
    
            @Override
            public void applyTo(PluginManagerInternal pluginManager) {
                PluginCoordinates altCoords = pluginRequest.getAlternativeCoordinates().orElse(null);
                if (altCoords != null && pluginManager.hasPlugin(altCoords.getId().getId())) {
                    return;
                }
    
                pluginManager.apply(pluginRequest.getId().getId());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
        tasks {
            named("codeQuality") {
                dependsOn(ktlintCheck)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 01 11:07:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                BuildPluginManager pluginManager,
                MavenPluginManager mavenPluginManager,
                LifecycleDependencyResolver lifeCycleDependencyResolver,
                ExecutionEventCatapult eventCatapult,
                Provider<MojosExecutionStrategy> mojosExecutionStrategy,
                MessageBuilderFactory messageBuilderFactory) {
            this.pluginManager = pluginManager;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginApplicationOrderIntegrationSpec.groovy

        @Issue('https://github.com/gradle/gradle/issues/15664')
        def 'plugins are applied in the order they are declared in the plugins block'() {
            given:
            publishPlugin """
                if (!project.pluginManager.hasPlugin('java')) {
                    throw new Exception('plugin application order is not correct')
                }
            """
    
            when:
            buildScript """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    syntax = "proto3";
    
    package v1beta1;
    option go_package = "k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1";
    
    import "github.com/gogo/protobuf/gogoproto/gogo.proto";
    
    option (gogoproto.goproto_stringer_all) = false;
    option (gogoproto.stringer_all) =  true;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/test/groovy/org/gradle/api/plugins/ReportingBasePluginTest.groovy

            project.apply plugin: 'reporting-base'
    
            expect:
            project.plugins.hasPlugin(ReportingBasePlugin)
        }
    
        def "adds reporting extension"() {
            given:
            project.pluginManager.apply(ReportingBasePlugin)
    
            expect:
            project.reporting instanceof ReportingExtension
    
            project.configure(project) {
                reporting {
                    baseDir "somewhere"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/BuildInitPluginSpec.groovy

    class BuildInitPluginSpec extends AbstractProjectBuilderSpec {
        def setup() {
            project.gradle.attachSettings(Stub(SettingsState))
        }
    
        def "adds 'init' task"() {
            when:
            project.pluginManager.apply BuildInitPlugin
    
            then:
            project.tasks.init instanceof InitBuild
            project.tasks.init.group == "Build Setup"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 01:15:37 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/MicronautPluginsSmokeTest.groovy

        @Override
        String getBuildScriptConfigurationForValidation() {
            """
                micronaut {
                    version '${TestedVersions.micronaut}'
               }
    
               pluginManager.withPlugin('io.micronaut.application') {
    
                   ${mavenCentralRepository()}
    
                   application {
                       mainClass = 'dummy'
                   }
               }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/publish/src/test/groovy/org/gradle/api/publish/plugins/PublishingPluginTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    class PublishingPluginTest extends AbstractProjectBuilderSpec {
    
        PublishingExtension extension
    
        def setup() {
            project.pluginManager.apply(PublishingPlugin)
            extension = project.extensions.getByType(PublishingExtension)
        }
    
        def "publishing extension is installed"() {
            expect:
            extension.publications != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top