Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,163 for componentX (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ====
    
    [[sec:publishing-custom-components]]
    == Creating and publishing custom components
    
    In the <<sec:adding-variants-to-existing-components, previous example>>, we have demonstrated how to extend or modify an existing component, like the components provided by the Java plugins.
    But Gradle also allows you to build a custom component (not a Java Library, not a Java Platform, not something supported natively by Gradle).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      TF_DataType dtype = TFE_TensorHandleDataType(components[0].get());
      // Verify that the TensorHandle's shape and dtype match all of the component
      // shapes and dtypes.
      for (TensorHandlePtr& component : components) {
        TFE_TensorHandleGetStatus(component.get(), status);
        if (!status->status.ok()) {
          return nullptr;
        }
        if (TFE_TensorHandleDataType(component.get()) != dtype) {
          TF_SetStatus(status, TF_INTERNAL,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

     * in the project.  Some methods - such as {@link #registerFeature(String, Action)} -
     * are not applicable in this manner and will throw exceptions if used when multiple
     * {@link org.gradle.jvm.component.internal.JvmSoftwareComponentInternal JvmSoftwareComponentInternal}
     * components are present.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            if (components.length == 0) {
                return path;
            }
            if (path.components.length == 0) {
                return this;
            }
    
            String[] descendantComponents = new String[components.length + path.components.length];
            arraycopy(components, 0, descendantComponents, 0, components.length);
            arraycopy(path.components, 0, descendantComponents, components.length, path.components.length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                    void mutateMyComponent(@Path("components.myComponent") $componentType component) {
                        component.data = "my component"
                    }
                    @Mutate
                    void mutateMyComponentSource(@Path("components.myComponent.sources.myComponentSource") $sourceType componentSourceSet) {
                        componentSourceSet.data = "my component sources"
                    }
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

    import org.gradle.internal.component.model.ComponentGraphSpecificResolveState
    import org.gradle.internal.component.model.ComponentIdGenerator
    import org.gradle.internal.component.model.ComponentOverrideMetadata
    import org.gradle.internal.component.model.DependencyMetadata
    import org.gradle.internal.component.model.ExcludeMetadata
    import org.gradle.internal.component.model.GraphVariantSelector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                }
    
                T coordinates = componentCoordinates.get(component);
                if (!coordinatesSeen.add(coordinates)) {
                    throw new InvalidUserDataException("Multiple child components may not share the same coordinates: " + coordinates);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/build.gradle.kts

    // end::guice-rule[]
    
    // tag::guice-dependencies[]
    dependencies {
        components {
            withModule<GuiceRule>("com.google.inject:guice")
        }
        implementation("com.google.inject:guice:4.2.2") {
            capabilities { requireCapability("com.google.inject:guice-no_aop") }
        }
    }
    // end::guice-dependencies[]
    
    
    // tag::ivy-component-metadata-rule[]
    @CacheableRule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

            other 'org.test:projectA:1.0'
    
            // Component metadata rule that applies only to the 'sub' project
            components {
                withModule('org.test:projectA', AddDependencyRule)
            }
        }
        task res {
            def conf = configurations.conf
            def other = configurations.other
            doLast {
                // If we resolve twice the modified component metadata for 'projectA' must not be cached in-memory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            variant.nodeId >> componentId
    
            def component = Stub(DependencyGraphComponent)
            _ * component.resultId >> componentId
            _ * component.selectionReason >> root()
            _ * component.resolveState >> componentState
            _ * component.selectedVariants >> [variant]
    
            def node = Stub(RootGraphNode)
            _ * node.owner >> component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top