Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,101 for Variant (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/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)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCppSharedLibraryLinkageProjectIntegrationTest.groovy

        }
    
        @Override
        String getIdeBuildTaskName(String variant) {
            return "link${variant.capitalize()}"
        }
    
        @Override
        List<String> getTasksToBuildFromIde(String variant) {
            return [":compile${variant.capitalize()}Cpp", ":link${variant.capitalize()}"]
        }
    
        @Override
        String getVisualStudioProjectName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    [[sec:cpp_unit_test_task_variants]]
    === Variant-dependent Tasks
    
    The {cpp} Unit Test Plugin creates tasks based on the variants of the unit test component.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .{cpp} Unit Test Plugin variant-dependent task graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top