Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for combine (1.94 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        fun zipTree(zipPath: Any): FileTree
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [KotlinInitScript.copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [KotlinInitScript.file].
         * @return The file tree.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

             */
            KILL_ALL_GRADLE_PROCESSES
        }
    
        private static final Pattern UNIX_PID_PATTERN = Pattern.compile("([0-9]+)");
        private static final Pattern WINDOWS_PID_PATTERN = Pattern.compile("([0-9]+)\\s*$");
        private static final String MY_PID = String.valueOf(ProcessHandle.current().pid());
        private static final String JAVA_EXECUTABLE_PATTERN_STR = "java(?:\\.exe)?";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

    
    object DocumentOverlay {
        /**
         * Produces a new document by merging the sources, namely [underlay] and [overlay], in a way that:
         * * configuring elements are combined, as if the block content of [underlay] goes before the block content of [overlay]
         * * elements that create a new object are merged together; the elements from [underlay] will appear first;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

                onDependencyFailure = FailureAction.FAIL_TO_START
                onDependencyCancel = FailureAction.FAIL_TO_START
            }
        }
    }
    
    fun Dependencies.compileAllDependency(compileAllId: String) {
        // Compile All has to succeed before anything else is started
        dependsOn(RelativeId(compileAllId))
        // Get the build receipt from sanity check to reuse the timestamp
        artifacts(RelativeId(compileAllId)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "mediumNativeMonolithic",
        "linux" : 359
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.nativeplatform.SwiftBuildPerformanceTest.incremental compile",
      "durations" : [ {
        "testProject" : "bigSwiftApp",
        "linux" : 285
      }, {
        "testProject" : "mediumSwiftMulti",
        "linux" : 1140
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

        fun DependencyConstraintHandler.`compile`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
            add("compile", constraintNotation, block)
    
    
        /**
         * Adds an artifact to the 'compile' configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.compile
    
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.kotlin.dsl.provider.KOTLIN_SCRIPT_COMPILATION_AVOIDANCE_ENABLED_PROPERTY
    import org.junit.Assert.assertTrue
    import org.junit.Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginIntegrationTest.kt

                assertThat(output, containsString("my-plugin settings plugin applied"))
            }
        }
    
        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `should compile correctly with Kotlin explicit api mode`() {
            withBuildScript(
                """
                plugins {
                    `kotlin-dsl`
                }
    
                $repositoriesBlock
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top