Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 770 for Sall (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

     */
    public abstract class InterceptScope {
    
        private enum CallType {
            METHOD("call method"),
            GET_PROPERTY("get property"),
            SET_PROPERTY("set property"),
            CONSTRUCTOR("call constructor");
    
            final String descriptorStringPrefix;
    
            CallType(String descriptorStringPrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        fun WriteContext.encodeLoop(coroutineContext: CoroutineContext) {
            do {
                val call = encodeCall!!
                suspend {
                    codec.run {
                        encode(call.value)
                    }
                }.startCoroutine(
                    Continuation(coroutineContext) {
                        when (val k = call.k) {
                            null -> {
                                encodeCall = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             * All modifying operations call this method prior to {@link #onChange(Object, Object)}, {@link #onRemove(Object)} or {@link #onClear()}.
             * <p>
             * When this method is called because of the modifying operation, the state of the observed Properties object is undefined for the duration of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     * by subclasses as they define our entry point behaviour, but they are protected to enable
     * testing as it's difficult to test something that will call System.exit().
     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    If more than one init script is found, they will all be executed in the order specified above.
    
    Scripts in a given directory are executed in alphabetical order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            taskGraph.beforeTask(action)
            taskExecutionListeners.source.beforeExecute(a)
            taskExecutionListeners.source.beforeExecute(b)
    
            then:
            1 * closure.call(a)
            1 * closure.call(b)
            1 * action.execute(a)
            1 * action.execute(b)
        }
    
        def "notifies after task listeners"() {
            def closure = Mock(Closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         *
         * @param callable The callable to call
         * @param <T> Callable's return type
         * @return The value returned by {@link Callable#call()}
         */
        @Nullable
        public static <T> T uncheckedCall(Callable<T> callable) {
            try {
                return callable.call();
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Apply an init script which replaces all external repositories with inner mirrors.
         * Note this doesn't work for buildSrc and composite build.
         *
         * @see org.gradle.integtests.fixtures.RepoScriptBlockUtil
         */
        GradleExecuter withRepositoryMirrors();
    
        /**
         * Requires an isolated gradle user home and put an init script which replaces all external repositories with inner mirrors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call `ObjectOutputStream.defaultWriteObject`;
    - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call `ObjectInputStream.defaultReadObject`;
    - a `writeReplace` method to allow the class to nominate a replacement to be written;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            1 * visitor.visitInputFileProperty('bean.inputDir', _, _, _, _, _, _, InputFilePropertyType.DIRECTORY)
    
            1 * visitor.visitOutputFileProperty('outputFile', false, { it.call().path == 'output' }, OutputFilePropertyType.FILE)
            1 * visitor.visitOutputFileProperty('bean.outputDir', false, { it.call().path == 'outputDir' }, OutputFilePropertyType.DIRECTORY)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top