Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,172 for componentX (0.21 sec)

  1. operator/pkg/component/component.go

    	// ResourceName returns the name of the resources of the component.
    	ResourceName() string
    	// Namespace returns the namespace for the component.
    	Namespace() string
    	// Enabled reports whether the component is enabled.
    	Enabled() bool
    	// Run starts the component. Must be called before the component is used.
    	Run() error
    	// RenderManifest returns a string with the rendered manifest for the component.
    	RenderManifest() (string, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

        def "resolve fails when target project has multiple component publications with different coordinates"() {
            given:
            def component1 = Stub(SoftwareComponentInternal)
            def component2 = Stub(SoftwareComponentInternal)
            def component3 = Stub(TestComponent)
    
            when:
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", component1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    For more details, see the section on <<component_capabilities.adoc#declaring-component-capabilities,capabilities>>.
    
    [[sub:terminology_component]]
    == Component
    
    Any single version of a <<dependency_management_terminology.adoc#sub:terminology_module,module>>.
    
    For external libraries, the term component refers to one published version of the library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactory.java

            return lazyStateFor(model, componentIdentifier, configurations, moduleVersionId, status, schema, false);
        }
    
        /**
         * Creates state for an ad hoc component, see {@link org.gradle.internal.component.model.ComponentGraphResolveState#isAdHoc()} for the definition of "ad hoc component".
         */
        public LocalComponentGraphResolveState adHocStateFor(
            ModelContainer<?> model,
            ComponentIdentifier componentIdentifier,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/component-model.odg

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    	}
    	return errors.Wrapf(err, "static Pod hash for component %s on Node %s did not change after %v", component, nodeName, w.timeout)
    }
    
    // getStaticPodSingleHash computes hashes for a single Static Pod resource
    func getStaticPodSingleHash(client clientset.Interface, nodeName string, component string) (string, error) {
    
    	staticPodName := fmt.Sprintf("%s-%s", component, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/plan.go

    	}
    	_ = tabw.Flush()
    
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintf(writer, "Upgrade to the latest %s:\n", au.Description)
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintln(tabw, strings.Join([]string{"COMPONENT", "NODE", "CURRENT", "TARGET"}, "\t"))
    	for _, component := range au.Components {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

        }
    
        @Defaults
        void verifyAsModelMap(@Path("components") ModelMap<ComponentSpec> c) {
            assert c.toString() == "ComponentSpecContainer 'components'"
            assert c.withType(CustomComponent).toString() == "ComponentSpecContainer 'components'"
            assert !(c instanceof ComponentSpecContainer)
        }
    
        @Defaults
        void verifyAsSpecializedModelMap(@Path("components") ModelMap<CustomComponent> c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

            components.withType(ComponentWithBinaries.class, component -> {
                // Register each child of each component
                component.getBinaries().whenElementKnown(binary -> components.add(binary));
    
                if (component instanceof ProductionComponent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                        components.all { component ->
                            component.unmanagedData = "unmanaged"
                        }
                    }
    
                    @Mutate
                    void mutateManaged(ModelMap<ManagedComponentSpec> components) {
                        components.all { component ->
                            component.managedData = "managed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top