Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for Resolvable (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    For more information, see the sections on <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,dependency configurations>> as well as <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,resolvable and consumable configurations>>.
    
    NOTE: The word "configuration" is an overloaded term and has a different meaning outside of the context of dependency management.
    
    [[sub:terminology_dependency]]
    == Dependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

         *     <li>Other configurations with names containing the 'test' substring (case ignored)</li>
         * </ul>
         * <p>
         * Note, that this property should contain resolvable configurations only.
         *
         * @since 7.5
         */
        @Incubating
        public SetProperty<Configuration> getTestConfigurations() {
            return testConfigurations;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/UniAddress.java

     * the client and may be necessary for proper operation.
     * <p>
     * This class should be used in favor of <tt>InetAddress</tt> to resolve
     * hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and
     * DNS resolvable hosts.
     */
    
    public class UniAddress {
    
        private static final int RESOLVER_WINS    = 0;
        private static final int RESOLVER_BCAST   = 1;
        private static final int RESOLVER_DNS     = 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    .{cpp} Unit Test Plugin configurations
    image::cpp-unit-test-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `testImplementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

        from(upgradedPropertiesMergeTask)
    }
    
    val kotlinDslSharedRuntime = configurations.dependencyScope("kotlinDslSharedRuntime")
    val kotlinDslSharedRuntimeClasspath = configurations.resolvable("kotlinDslSharedRuntimeClasspath") {
        extendsFrom(kotlinDslSharedRuntime.get())
    }
    dependencies {
        kotlinDslSharedRuntime(platform("gradlebuild:build-platform"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    .XCTest Plugin configurations
    image::xctest-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `testImplementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. cmd/object-api-interface.go

    	DeletePrefix                        bool      // set true to enforce a prefix deletion, only application for DeleteObject API,
    	DeletePrefixObject                  bool      // set true when object's erasure set is resolvable by object name (using getHashedSetIndex)
    
    	Speedtest bool // object call specifically meant for SpeedTest code, set to 'true' when invoked by SpeedtestHandler.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

        private final Configuration compileOnly;
    
        // Configurable dependency configurations
        private Configuration compileOnlyApi;
        private Configuration api;
    
        // Resolvable configurations
        private final Configuration runtimeClasspath;
        private final Configuration compileClasspath;
    
        // Outgoing variants
        private final Configuration apiElements;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top