Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,345 for componentX (0.16 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib.h

     public:
      // Construct a ParallelTensor from TensorHandles placed on the component
      // devices of a ParallelDevice. If called, ParallelTensor::Shape inspects
      // `components` to determine a shape.
      static std::unique_ptr<ParallelTensor> FromTensorHandles(
          const ParallelDevice& parallel_device,
          std::vector<TensorHandlePtr> components, TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

        }
    
        public static void createBuildDependentComponentsTasks(ModelMap<Task> tasks, ComponentSpecContainer components) {
            for (final VariantComponentSpec component : components.withType(NativeComponentSpec.class).withType(VariantComponentSpec.class)) {
                tasks.create(getAssembleDependentComponentsTaskName(component), DefaultTask.class, new Action<DefaultTask>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                List<BinarySpecInternal> notBuildable = new ArrayList<>();
                boolean hasBuildableBinaries = false;
                for (VariantComponentSpec component : components.withType(VariantComponentSpec.class)) {
                    for (BinarySpecInternal binary : component.getBinaries().withType(BinarySpecInternal.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

        }
    
        def "cannot add multiple components"() {
            given:
            def publication = createPublication()
    
            when:
            publication.from(createComponent([], []))
            publication.from(Mock(SoftwareComponentInternal))
    
            then:
            def e = thrown(InvalidUserDataException)
            e.message == "Ivy publication 'pub-name' cannot include multiple components"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

          </trusted-keys>
       </configuration>
       <components>
          <component group="org" name="baz" version="1.0.0">
             <artifact name="baz-1.0.0.jar">
                <pgp value="${SigningFixtures.validPublicKeyHexString}"/>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReader.java

            private void assertInComponents() {
                assertContext(inComponents, COMPONENT, COMPONENTS);
            }
    
            private void assertInMetadata() {
                assertContext(inMetadata, COMPONENTS, VERIFICATION_METADATA);
            }
    
            private void assertValidComponent() {
                assertContext(currentComponent != null, ARTIFACT, COMPONENT);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:37 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            def variant2 = createVariant([artifact2], [], 'runtime')
            def component = Stub(SoftwareComponentInternal)
            component.usages >> [variant1, variant2]
            def mavenArtifact = Mock(MavenArtifact)
            mavenArtifact.file >> artifactFile
            notationParser.parseNotation(artifact1) >> mavenArtifact
    
            when:
            publication.from(component)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate_value.go

    			"{{.ValueComponentName}}.podDisruptionBudget":   "Components.{{.ComponentName}}.K8s.PodDisruptionBudget",
    			"{{.ValueComponentName}}.podAnnotations":        "Components.{{.ComponentName}}.K8s.PodAnnotations",
    			"{{.ValueComponentName}}.priorityClassName":     "Components.{{.ComponentName}}.K8s.PriorityClassName",
    			"{{.ValueComponentName}}.readinessProbe":        "Components.{{.ComponentName}}.K8s.ReadinessProbe",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    func (v *Version) compareInternal(other *Version) int {
    
    	vLen := len(v.components)
    	oLen := len(other.components)
    	for i := 0; i < vLen && i < oLen; i++ {
    		switch {
    		case other.components[i] < v.components[i]:
    			return 1
    		case other.components[i] > v.components[i]:
    			return -1
    		}
    	}
    
    	// If components are common but one has more items and they are not zeros, it is bigger
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         * @since 1.8
         */
        void components(Action<? super ComponentMetadataHandler> configureAction);
    
        /**
         * Returns the component module metadata handler for this project. The returned handler can be used for adding rules
         * that modify the metadata of depended-on software components.
         *
         * @return the component module metadata handler for this project
         * @since 2.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top