Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for texts (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

            withFile("$baseDir/build.gradle.kts", script, produceFile)
    
        protected
        fun withFile(fileName: String, text: String = "", produceFile: (String) -> File = ::newFile) =
            writeFile(produceFile(fileName), text)
    
        private
        fun writeFile(file: File, text: String): File =
            file.apply { writeText(text) }
    
        protected
        fun withBuildSrc() =
            withFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
         *
         * Default value (if absent) is "include".
         */
        const val FLAKY_TEST = "flakyTests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

    import java.util.concurrent.Callable
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    object Config {
        const val performanceTestReportsDir = "performance-tests/report"
        const val performanceTestResultsJsonName = "perf-results.json"
        const val performanceTestResultsJson = "performance-tests/$performanceTestResultsJsonName"
    
        // Android Studio Jellyfish 2023.3.1
        // Find all references here https://developer.android.com/studio/archive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                        text("subprojects")
                        if (relativeToAnother) {
                            text(" of project ")
                            reference(access.relativeTo)
                        }
                    }
    
                    ALLPROJECTS -> {
                        text("subprojects")
                        if (relativeToAnother) {
                            text(" of project ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                    sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "Hello" else "main") + ".swift"
                    testSourceFile = exampleClass + "Tests.swift"
                    sourceFileTree = "        │       └── $sourceFile"
                    testSourceFileTree = """                └── $testSourceFile
                    └── LinuxMain.swift"""
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. LICENSE

          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        QUICK_FEEDBACK("Quick Feedback", "Run checks and functional tests (embedded executer, Windows)", "QuickFeedback"),
        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

            }
        }
    
        private
        fun File.assertContentContains(text: String) {
            val fullContent = this.readText()
            assert(fullContent.contains(text)) {
                "Expected ${this.name} content to contain text: '$text', but it didn't. Full content:\n$fullContent"
            }
        }
    
        private
        fun runner() = GradleRunner.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    This fragment is very important: it is the only part of the text that appears in certain contexts such as class and method indexes:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     */
    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

            val buildscriptFragment =
                originalSource.fragment(1..10, 12..31)
    
            val scriptSource =
                originalSource.map { text("\n                               ; include(\"stage-2\")") }
    
            val expectedEvalSource =
                originalSource.map { text("\nbuildscript { dependencies {} }") }
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
Back to top