Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for combine (0.34 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. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         */
        ExecutionTimeValue<? extends T> calculateExecutionTimeValue();
    
        @Override
        default <U, R> Provider<R> zip(Provider<U> right, BiFunction<? super T, ? super U, ? extends R> combiner) {
            return new BiProvider<>(null, this, right, combiner);
        }
    
        /**
         * Returns a provider that attaches the side effect to the values it produces.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. .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)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * either implement the [java.io.Externalizable] interface, or implement the [java.io.Serializable] interface and define one of the following combination of methods:
     * - a `writeObject` method combined with a `readObject` method to control exactly which information to store;
     * - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call [ObjectOutputStream.defaultWriteObject];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. .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)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

        private
        val ref: Parser<T> = { parser() }
    }
    
    
    /**
     * Returns a shell parser, holding a mutable reference to another parser.
     * Can be combined with other parsers in the usual way and its delegate can be set at a later moment in time.
     *
     * It can also be used to create recursive parsers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top