Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for pluginManager (2.29 sec)

  1. platforms/jvm/war/src/test/groovy/org/gradle/api/tasks/bundling/WarTest.groovy

            then:
            new JarTestFixture(war.archiveFile.get().asFile).assertContainsFile('WEB-INF/file.txt')
        }
    
        def "configures destinationDirectory for war tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            project.version = '1.0'
    
            then:
            def someWar = project.tasks.create('someWar', War)
            someWar.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    package reconciler
    
    import (
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/operationexecutor"
    	"k8s.io/kubernetes/pkg/util/goroutinemap"
    	"k8s.io/kubernetes/pkg/util/goroutinemap/exponentialbackoff"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/tools/record"
    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/operationexecutor"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher"
    )
    
    const (
    	// reconcilerLoopSleepDuration is the amount of time the reconciler loop
    	// waits between successive executions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/NativeToolChainPluginTest.groovy

    abstract class NativeToolChainPluginTest extends AbstractProjectBuilderSpec {
    
        def registry
    
        def setup() {
            registry = project.modelRegistry
            project.pluginManager.apply(getPluginClass())
        }
    
        abstract Class<? extends Plugin> getPluginClass()
    
        abstract Class<? extends NativeToolChain> getToolchainClass()
    
        String getToolchainName() {
            "toolchain"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/plugins/JvmEcosystemPluginTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    class JvmEcosystemPluginTest extends AbstractProjectBuilderSpec {
    
        def setup() {
            project.pluginManager.apply(JvmEcosystemPlugin)
        }
    
        def "configures the attributes schema"() {
            when:
            def attrs = project.dependencies.attributesSchema.attributes
    
            then:
            attrs.containsAll(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/DefaultScriptPluginFactory.java

                initialRunner.run(target, services);
    
                PluginRequests initialPluginRequests = getInitialPluginRequests(initialRunner);
    
                PluginManagerInternal pluginManager = topLevelScript ? initialPassScriptTarget.getPluginManager() : null;
                PluginRequests autoAppliedPlugins = autoAppliedPluginHandler.getAutoAppliedPlugins(initialPluginRequests, target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cunit/CUnitTest.groovy

        final def project = TestUtil.create(testDir).rootProject();
    
        def "creates a test suite for each library under test"() {
            given:
            project.pluginManager.apply(CUnitConventionPlugin)
            project.model {
                components {
                    main(NativeLibrarySpec)
                }
            }
            project.evaluate()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingValidationIntegrationTest.groovy

            buildScript """
                class Rules extends RuleSource {
                  @Model
                  String s1(Integer iDontExist) {
                    "foo"
                  }
                }
    
                pluginManager.apply Rules
            """
    
            then:
            fails "help"
            failureCauseContains("""
      Rules#s1(Integer)
        inputs:
          - <no path> Integer (parameter 1) [*]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	pluginManager := pluginmanager.NewPluginManager(
    		filepath.Dir(pluginSocketName), /* sockDir */
    		&record.FakeRecorder{},
    	)
    
    	runPluginManager(pluginManager)
    	pluginManager.AddHandler(watcherapi.DevicePlugin, m.GetWatcherHandler())
    	return pluginManager
    }
    
    func runPluginManager(pluginManager pluginmanager.PluginManager) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.displayName
    
        override fun relativeProjectPath(path: String): String =
            delegate.relativeProjectPath(path)
    
        override fun getPluginManager(): PluginManager =
            delegate.pluginManager
    
        override fun setGroup(group: Any) {
            delegate.group = group
        }
    
        override fun fileTree(baseDir: Any): ConfigurableFileTree =
            delegate.fileTree(baseDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top