Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for vagrant (0.17 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

    org.ow2.asm:asm:7.1
      Variant compile:
        | Attribute Name                 | Provided | Requested    |
        |--------------------------------|----------|--------------|
        | org.gradle.status              | release  |              |
        | org.gradle.category            | library  | library      |
        | org.gradle.libraryelements     | jar      | classes      |
        | org.gradle.usage               | java-api | java-api     |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

            configurations.all {
                if (isCanBeResolved && !isCanBeConsumed) {
                    resolutionStrategy.dependencySubstitution {
                        substitute(module("it.unimi.dsi:fastutil")).using(variant(module("it.unimi.dsi:fastutil:8.5.2")) {
                            attributes {
                                attribute(minified, true)
                            }
                        })
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K 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/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/base-dependency-insight.out

    > Task :dependencyInsight
    io.vertx:vertx-lang-groovy:3.9.4
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

            The only attribute distinguishing these variants is 'org.gradle.native.architecture'. Add this attribute to the consumer's configuration to resolve the ambiguity:
              - Value: 'x86-64' selects variant: 'natives-windows-runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    │       └── lib
    │           └── app  // <2>
    └── test
        ├── appTest      // <1>
        └── lib
            └── appTest  // <3>
    ----
    <1> The script for executing the application variant
    <2> The main executable binary (debug variant)
    <3> The test executable binary
    
    NOTE: When a build has dependencies, the dependent libraries are also copied into the installation folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-capabilitySubstitutionRule/kotlin/build.gradle.kts

    dependencies {
        implementation("com.acme:lib:1.0")
    }
    
    // tag::substitution_rule[]
    configurations.testCompileClasspath {
        resolutionStrategy.dependencySubstitution {
            substitute(module("com.acme:lib:1.0")).using(variant(module("com.acme:lib:1.0")) {
                capabilities {
                    requireCapability("com.acme:lib-test-fixtures")
                }
            })
        }
    }
    // end::substitution_rule[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 655 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/tests/runtimeClasspath.out

    > Task :consumer:dependencyInsight
    mysql:mysql-connector-java:8.0.14
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 934 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/groovy/consumer/build.gradle

        }
    }
    // end::substitution_rule[]
    
    // tag::substitution_rule_alternative[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute variant(module('com.google.guava:guava:28.2-jre')) {
                attributes {
                    attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.REGULAR_PLATFORM))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top