Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 144 for Resolvable (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            }
        }
    
        private fun convertToKtCallCandidateInfo(
            resolvable: FirResolvable,
            element: KtElement,
            candidate: Candidate,
            isInBestCandidates: Boolean,
            resolveFragmentOfCall: Boolean,
        ): KaCallCandidateInfo? {
            val call = createKtCall(element, resolvable, candidate, resolveFragmentOfCall)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
                    description = "My custom configuration"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. build/root/Makefile

    #  REMOTE_MODE: For REMOTE=true only.  Mode for remote execution (eg. gce, ssh).
    #    If set to "gce", an instance can be provisioned or reused from GCE. If set
    #    to "ssh", provided `HOSTS` must be IPs or resolvable.  Defaults to "gce".
    #  ARTIFACTS: Local directory to scp test artifacts into from the remote hosts
    #    for REMOTE=true. Local directory to write juntil xml results into for REMOTE=false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top