Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 473 for wired (0.06 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/systemProperties/kotlin/build.gradle.kts

        @TaskAction fun action() { println(inputValue.get()) }
    }
    
    // tag::system-properties-task-inputs[]
    tasks.register<PrintValue>("printProperty") {
        // Using the Gradle API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.systemProperty("system")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 653 bytes
    - Viewed (0)
  2. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskReportContainerTest.groovy

            }.findAll {
                !it.contains('.')
            }.unique().sort()
        }
    
        @Unroll("tasks inputs and outputs are wired correctly A: #aEnabled, B: #bEnabled")
        def "tasks inputs and outputs are wired correctly"() {
            when:
            container.a.required = aEnabled
            container.b.required = bEnabled
    
            then:
            outputFiles*.name == fileNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/systemProperties/groovy/build.gradle

        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::system-properties-task-inputs[]
    tasks.register('printProperty', PrintValue) {
        // Using the Gradle API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.systemProperty('system')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 652 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/kotlin/build.gradle.kts

        @TaskAction fun action() { println(inputValue.get()) }
    }
    
    // tag::execution[]
    tasks.register<PrintValue>("printValue") {
        // Using the Gradle API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.environmentVariable("ENVIRONMENTAL")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 629 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/build.gradle.kts

        @TaskAction fun action() { println(inputValue.get()) }
    }
    
    // tag::gradle-properties-task-inputs[]
    tasks.register<PrintValue>("printProperty") {
        // Using the API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.gradleProperty("gradlePropertiesProp")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 731 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/build.gradle

        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::execution[]
    tasks.register('printValue', PrintValue) {
        // Using the Gradle API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.environmentVariable('ENVIRONMENTAL')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/build.gradle

        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::gradle-properties-task-inputs[]
    tasks.register('printProperty', PrintValue) {
        // Using the API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.gradleProperty('gradlePropertiesProp')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestVerificationFailureHandlingIntegrationTest.groovy

                }
            '''
        }
    
        /**
         * Helper method to setup a custom task wired to the test in two ways:
         * <ol>
         *     <li>A direct dependency via dependsOn declarartion</li>
         *     <li>Via Test#binaryResultsDirectory output wired to customTask#customInput</li>
         * </ol>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    == Defining and using a composite build
    
    This sample shows how 2 Gradle builds that are normally developed separately and combined using binary integration can be wired together into a composite build with source integration. The `my-utils` multiproject build produces 2 different java libraries, and the `my-app` build produces an executable using functions from those libraries.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/HostSpecifierTest.java

     * is a thin wrapper around {@link InetAddresses} and {@link InternetDomainName}; the unit tests for
     * those classes explore numerous corner cases. The intent here is to confirm that everything is
     * wired up properly.
     *
     * @author Craig Berry
     */
    public final class HostSpecifierTest extends TestCase {
    
      private static final ImmutableList<String> GOOD_IPS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 18 15:33:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top