Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for plugins_registry (0.4 sec)

  1. pkg/volume/csi/csi_plugin_test.go

    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"0.2.0"},
    			shouldFail: true,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"0.2.0", "v0.3.0"},
    			shouldFail: true,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/SettingsScopeServices.java

        }
    
        @Provides
        protected PluginRegistry createPluginRegistry(PluginRegistry parentRegistry) {
            return parentRegistry.createChild(settings.getClassLoaderScope());
        }
    
        @Provides
        protected PluginManagerInternal createPluginManager(
            Instantiator instantiator,
            PluginRegistry pluginRegistry,
            InstantiatorFactory instantiatorFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

                }
            });
            addProvider(new WorkerSharedProjectScopeServices(project.getProjectDir()));
        }
    
        @Provides
        protected PluginRegistry createPluginRegistry(PluginRegistry rootRegistry) {
            PluginRegistry parentRegistry;
            ProjectState parent = project.getOwner().getBuildParent();
            if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

            );
        }
    
        @Provides
        PluginRegistry createPluginRegistry(PluginRegistry parentRegistry) {
            return parentRegistry.createChild(get(GradleInternal.class).getClassLoaderScope());
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        def classLoader = new GroovyClassLoader(getClass().classLoader)
        def pluginRegistry = new DefaultPluginRegistry(pluginInspector, scope(classLoader))
        def target = Mock(PluginTarget)
        def instantiator = TestUtil.instantiatorFactory().inject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

    import org.gradle.api.internal.initialization.ScriptHandlerFactory;
    import org.gradle.api.internal.plugins.DefaultPluginRegistry;
    import org.gradle.api.internal.plugins.PluginInspector;
    import org.gradle.api.internal.plugins.PluginRegistry;
    import org.gradle.api.internal.project.DefaultProjectRegistry;
    import org.gradle.api.internal.project.DefaultProjectTaskLister;
    import org.gradle.api.internal.project.IsolatedAntBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.plugins.PluginRegistry> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginRegistry.java:0)
    Class <org.gradle.api.internal.plugins.PluginTarget> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginTarget.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top