Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 489 for Tiller (0.18 sec)

  1. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

        // Using a closure to specify the source files.
        setSource({
            // Use the contents of each zip file in the src dir
            file("src").listFiles().filter { it.name.endsWith(".zip") }.map { zipTree(it) }
        })
    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    tasks.named<JavaCompile>("compile") {
        // Add some source directories use String paths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.dot

    digraph swiftLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantSwift -> linkVariant -> installVariant -> assembleVariant [dir=back, style=dashed]
      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

    import org.gradle.kotlin.dsl.resolver.SourceDistributionResolver
    import org.gradle.kotlin.dsl.resolver.SourcePathProvider
    import org.gradle.kotlin.dsl.support.ImplicitImports
    import org.gradle.kotlin.dsl.support.filter
    import org.gradle.kotlin.dsl.support.isGradleKotlinDslJar
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.kotlin.dsl.tooling.builders.AbstractKotlinDslScriptsModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        inputs.property('args') { // Arguments are covered by the testProjectName and the outputs. We don't want them to contain the absolute path
            return []
        }
        classpath = sourceSets.performanceTest.runtimeClasspath.filter { it.name.contains('groovy') || it.name.contains('guava')  || it.name.contains('gradle-') }
        mainClass = 'org.gradle.performance.generator.DeclarativeDslTestProjectGenerator'
        args name, buildDir.absolutePath
    }
    
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    tree = fileTree("dir" to "src", "include" to "**/*.java", "exclude" to "**/*test*/**")
    // end::define[]
    
    // tag::use[]
    // Iterate over the contents of a tree
    tree.forEach{ file: File ->
        println(file)
    }
    
    // Filter a tree
    val filtered: FileTree = tree.matching {
        include("org/gradle/api/**")
    }
    
    // Add trees together
    val sum: FileTree = tree + fileTree("src/test")
    
    // Visit the elements of the tree
    tree.visit {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

    digraph cppApplicationTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-static-library-task-graph.dot

    digraph cppStaticLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> createDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> createRelease -> assembleRelease [dir=back]
      clean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * Attempting to create new streams on these allocations will fail.
     *
     * Note that an allocation may be released before its stream is completed. This is intended to make
     * bookkeeping easier for the caller: releasing the allocation as soon as the terminal stream has
     * been found. But only complete the stream once its data stream has been exhausted.
     */
    interface Connection {
      /** Returns the route used by this connection. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. mockwebserver/README.md

    Dispatcher (`import okhttp3.mockwebserver.Dispatcher`) to handle requests using another policy. One natural policy is to
    dispatch on the request path.
    You can, for example, filter the request instead of using `server.enqueue()`.
    
    ```java
    final Dispatcher dispatcher = new Dispatcher() {
    
        @Override
        public MockResponse dispatch (RecordedRequest request) throws InterruptedException {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

        sourceDirectories.from(sourcesPath.getIncoming().artifactView { lenient(true) }.getFiles())
        executionData(coverageDataPath.getIncoming().artifactView { lenient(true) }.getFiles().filter { it.exists() })
    
        reports {
            html.required = true
            xml.required = true
        }
    }
    
    // Make JaCoCo report generation part of the 'check' lifecycle phase
    tasks.named('check') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top