Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 236 for isIsolated (0.45 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            minimumPluginVersionForConfigurationCaching | true
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Isolated projects implies config cache")
        def "shows warning message when Develocity plugin version is used with isolated projects enabled"() {
            given:
            plugin.runtimeVersion = pluginVersion
            plugin.artifactVersion = pluginVersion
            applyPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. docs/orchestration/README.md

    While containers provide isolated application execution environment, orchestration platforms allow seamless scaling by helping replicate and manage containers. MinIO extends this by adding isolated storage environment for each tenant.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/DefaultClassLoaderFactoryTest.groovy

            original = Thread.currentThread().contextClassLoader
        }
    
        def cleanup() {
            Thread.currentThread().contextClassLoader = original
        }
    
        def "classes from specified URLs are visible in isolated ClassLoader"() {
            when:
            def cl = factory.createIsolatedClassLoader("test", classpath)
            def c = cl.loadClass(DefaultClassLoaderFactoryTestHelper.name)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/Managed.java

         * Note that the state may not be immutable, so should be made isolated to reuse in another context. The state can also be fingerprinted to generate a fingerprint of this object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top