Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for pluginManager (0.46 sec)

  1. pkg/kubelet/pluginmanager/pluginwatcher/example_handler.go

    	"google.golang.org/grpc/credentials/insecure"
    	"k8s.io/klog/v2"
    
    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2"
    )
    
    type exampleHandler struct {
    	SupportedVersions []string
    	ExpectedNames     map[string]int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

                visitor.visitClassLoader(plugin.asClass().getClassLoader());
            }
    
            @Override
            public void applyTo(PluginManagerInternal pluginManager) {
                pluginManager.apply(plugin);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

                include 'a', 'b'
                assert pluginManager.hasPlugin('$fixture.id')
            """
    
            and:
            runBuildWithScanRequest()
    
            then:
            pluginAppliedOnce()
        }
    
        def "does not apply plugin to nested builds in a composite"() {
            when:
            settingsFile << """
                includeBuild 'a'
                assert pluginManager.hasPlugin('$fixture.id')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GroovyInteroperabilityIntegrationTest.kt

                class MyPlugin implements Plugin<Project> {
                    void apply(project) {
                        project.extensions.add('myextension', MyExtension)
                    }
                }
    
                pluginManager.apply(MyPlugin)
                """
            )
    
            withBuildScript(
                """
                apply(from = "groovy.gradle")
    
                extensions["myextension"].withGroovyBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    syntax = "proto3";
    
    package v1beta2;
    option go_package = "k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2";
    
    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)
  6. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/plugins/NativeTestingBasePluginTest.groovy

        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testSuite").build()
    
        def "defines test task and wires in to check task"() {
            given:
            project.pluginManager.apply(NativeTestingBasePlugin)
    
            expect:
            project.tasks['test']
            project.tasks['check'] TaskDependencyMatchers.dependsOn('test')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/WrapperPluginSpec.groovy

        def project = TestUtil.createRootProject(testDir.testDirectory)
    
        def "adds 'wrapper' task"() {
            when:
            project.pluginManager.apply WrapperPlugin
    
            then:
            project.tasks.wrapper instanceof Wrapper
            project.tasks.wrapper.group == "Build Setup"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/util/util.go

    	claimName := ""
    	readOnly := false
    	if pvcSource := podVolume.VolumeSource.PersistentVolumeClaim; pvcSource != nil {
    		claimName = pvcSource.ClaimName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/PluginRequestsHandler.kt

            pluginRequestApplicator.applyPlugins(
                initialRequests.mergeWith(autoAppliedPlugins),
                scriptHandler,
                target.pluginManager,
                targetScope
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolution.java

         */
        default void accept(PluginResolutionVisitor visitor) { }
    
        /**
         * Apply the plugin to the provided plugin manager.
         */
        void applyTo(PluginManagerInternal pluginManager);
    
        /**
         * The resolved plugin version, if known.
         *
         * @return The resolved plugin version, or null if the plugin version is not known.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top