Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 269 for inflated (0.25 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     */
    
    package org.gradle.api;
    
    import java.io.Serializable;
    
    /**
     * Defines an action that is applied to objects of type {@link T}, with each target getting its own isolated action instance.
     *
     * Each isolated action is re-created through Configuration Cache serialization before it is applied to a target.
     * This approach ensures that sharing mutable state across targets via any means
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/IsolatedAntBuilder.java

         * @return a copy of this builder
         */
        IsolatedAntBuilder withClasspath(Iterable<File> classpath);
    
        /**
         * Executes the given closure against an isolated {@link org.gradle.api.AntBuilder} instance. The builder will
         * have visible to it an isolated version of Ant, Groovy and the specified libraries (if any). Each call to this
         * method is given a separate Ant project.
         */
        void execute(Closure antClosure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *
     * <ul>
     *     <li>Parallel execution of work items within a single task</li>
     *     <li>Execution in isolated contexts such as an isolated classloader or even a separate process</li>
     *     <li>Safe execution of multiple tasks in parallel</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/configuration/IsolatedProjectsSettingsFinalizedProgressDetails.java

     * limitations under the License.
     */
    
    package org.gradle.operations.configuration;
    
    /**
     * Signals whether Isolated Projects has been enabled in the build.
     *
     * @since 8.3
     */
    public interface IsolatedProjectsSettingsFinalizedProgressDetails {
    
        /**
         * Whether Isolated Projects is enabled for the build.
         */
        boolean isEnabled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 928 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

        /**
         * Indicates that this task is isolated and so does not require the project lock in order to execute.
         */
        public void isolated() {
            isolated = true;
        }
    
        public WorkValidationContext getValidationContext() {
            return validationContext;
        }
    
        @Nullable
        @Override
        public ResourceLock getProjectToLock() {
            if (isolated) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

                    parameter = "42"
                }
            '''
        }
    
        def configuredTaskRunsCorrectly() {
            run 'test'
            outputContains 'The parameter is `42`'
            true
        }
    
        def 'isolated beforeProject action given as Kotlin lambda can capture managed value'() {
            given:
            withSettingsPluginInBuildLogic()
    
            createDir('build-logic') {
                file('settings.gradle.kts') << ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaModuleInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        public @Nullable IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:33:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaProjectInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        @Nullable
        public IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 13:32:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

            switch (entry.getMethod()) {
                case java.util.zip.ZipEntry.STORED:
                    return ZipCompressionMethod.STORED;
                case java.util.zip.ZipEntry.DEFLATED:
                    return ZipCompressionMethod.DEFLATED;
                default:
                    return ZipCompressionMethod.OTHER;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

        /**
         * @see org.gradle.api.invocation.GradleLifecycle#afterProject(IsolatedAction)
         */
        void afterProject(IsolatedAction<? super Project> action);
    
        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top