Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,195 for Variant (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedVariantResultSerializer.java

                encoder.writeString(variant.getDisplayName());
                attributeContainerSerializer.write(encoder, variant.getAttributes());
                writeCapabilities(encoder, variant.getCapabilities());
                write(encoder, variant.getExternalVariant().orElse(null));
            } else {
                encoder.writeSmallInt(index);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tools/docker-builder/common.go

    				// If we need a default as well, add it as a second tag for the same image to avoid building twice
    				if variant == PrimaryVariant && hasDoubleDefault {
    					tags = append(tags, fmt.Sprintf("%s/%s:%s%s", h, target, tg, a.suffix))
    				}
    			}
    		}
    	}
    	return tags
    }
    
    func createArgs(args Args, target string, variant string, architecture string) map[string]string {
    	baseDist := variant
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

        @Override
        public List<DependencyResult> getDependenciesForVariant(ResolvedVariantResult variant) {
            if (!selectedVariants.contains(variant)) {
                reportInvalidVariant(variant);
            }
            return ImmutableList.copyOf(variantDependencies.get(variant));
        }
    
        private void reportInvalidVariant(ResolvedVariantResult variant) {
            Optional<ResolvedVariantResult> sameName = selectedVariants.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.dot

        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
        swiftCompileVariant -> nativeLinkVariant -> nativeRuntimeVariant [style=invis, weight=1000]
    
        swiftCompileVariant[label=<swiftCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-library-configurations.dot

        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
        cppCompileVariant -> nativeLinkVariant -> nativeRuntimeVariant [style=invis, weight=1000]
    
        cppCompileVariant[label=<cppCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    For example, unzipping a JAR transforms the artifact of the `java-api,jars` variant into the `java-api,classes` variant.
    Such a transformation is called _Artifact Transform_.
    Gradle allows registering artifact transforms, and when the dependency does not have the requested variant, then Gradle will try to find a chain of artifact transforms for creating the variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveState.java

    import javax.annotation.Nullable;
    
    /**
     * State for a component variant that is used to perform dependency graph resolution.
     *
     * <p>This does not include any information about the artifacts of the variant, which are generally not required during graph resolution.</p>
     */
    public interface VariantGraphResolveState extends HasAttributes {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

                    project(':dep', "test:dep:unspecified") {
                        variant "${color}Variant", [color: color]
                        noArtifacts()
                    }
                }
            }
    
            where:
            color << ['blue', 'red']
        }
    
        def "Fails with reasonable error message when no target variant can be found"() {
            given:
            settingsFile << "include 'dep'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/custom_tensorlist_reserve.mlir

    func.func @main(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<!tf_type.variant<tensor<*xi32>>> {
      %0 = "tfl.custom"(%arg0, %arg1) {custom_code = "TensorListReserve", custom_option = #tfl<const_bytes : "0x02">} : (tensor<i32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*xi32>>>
      func.return %0 : tensor<!tf_type.variant<tensor<*xi32>>>
    }
    
    // CHECK:   operator_codes: [ {
    // CHECK:       custom_code: "TensorListReserve",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 23:05:53 UTC 2023
    - 918 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

            this.chain = chain;
        }
    
        /**
         * @return The transformed variant which results from applying the transform chain to the root variant.
         */
        public VariantDefinition getTransformedVariantDefinition() {
            return chain;
        }
    
        /**
         * @return The transform chain to apply to the root producer variant.
         */
        public TransformChain getTransformChain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top