Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for isIsolated (0.52 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultClassLoaderFactory.java

            // 4. JAXP attempts to load the provider using the context ClassLoader. which is our isolated ClassLoader. This is fine if the classname came from step 1 or 3. It blows up if the
            //    classname came from step 2.
            //
            // So, as a workaround, locate and make visible XML parser classes from the system classloader in our isolated ClassLoader.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactResolverTest.xml

          <role>org.apache.maven.artifact.resolver.ArtifactResolver</role>
          <role-hint>default</role-hint>
          <implementation>org.apache.maven.artifact.resolver.DefaultArtifactResolver</implementation>
          <isolated-realm>false</isolated-realm>
          <requirements>
            <requirement>
              <role>org.codehaus.plexus.logging.Logger</role>
              <role-hint>default</role-hint>
              <field-name>logger</field-name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 30 20:43:28 UTC 2011
    - 2.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            this.gradle = gradle;
            this.features = features;
        }
    
        @Override
        public void beforeProject(Action<? super Project> action) {
            // Preserve behavior when Isolated Projects is not enabled:
            // - `allprojects` executes eagerly before any project has been evaluated, allowing its effects
            //   to be observable from other eager configuration blocks (e.g., `subprojects { ... }`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

     * 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.internal.cc.impl.isolated
    
    import org.gradle.api.tasks.TasksWithInputsAndOutputs
    import org.gradle.test.fixtures.file.TestFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/operations/configuration/IsolatedProjectsSettingsBuildOperationsIntegrationTest.groovy

            when:
            succeeds("help", "-Dorg.gradle.unsafe.isolated-projects=$enabled")
            then:
            isolatedProjectsEvents().enabled == [enabled]
            configurationCacheEvents().enabled == [GradleContextualExecuter.configCache || enabled]
    
            // Ensure events are produced on CC hit as well
            when:
            succeeds("help", "-Dorg.gradle.unsafe.isolated-projects=$enabled")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            val startParameter = requirements.startParameter
    
            // Isolated projects also implies configuration cache
            if (startParameter.isolatedProjects.get() && !startParameter.configurationCache.get()) {
                if (startParameter.configurationCache.isExplicit) {
                    throw GradleException("The configuration cache cannot be disabled when isolated projects is enabled.")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsBuildFeatureIntegrationTest.groovy

     * 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.internal.cc.impl.isolated
    
    class IsolatedProjectsBuildFeatureIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
    
        def "build feature indicates requested and active status"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

    import org.gradle.api.Incubating;
    import org.gradle.api.Project;
    import org.gradle.api.file.Directory;
    
    /**
     * An isolated view of {@link Project} that exposes only those properties that are safe to access from outside of
     * <code>this</code> project, from the perspective of isolated projects.
     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/NOTES.txt

    -- TLS secrets and domain name management is isolated, for better security
    -- simplified configuration
    -- multiple versions of the ingress can be used, to minimize upgrade risks
    
    - the new chart uses the default namespace service account, and doesn't require
    additional RBAC permissions.
    
    - simplified label and chart structure.
    - ability to run a pilot dedicated for the gateway, isolated from the main pilot. This is more robust, safer on upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. container-tests/src/test/java/okhttp3/containers/BasicLoomTest.kt

    import org.junit.jupiter.api.parallel.Isolated
    import org.mockserver.client.MockServerClient
    import org.mockserver.model.HttpRequest.request
    import org.mockserver.model.HttpResponse.response
    import org.testcontainers.containers.MockServerContainer
    import org.testcontainers.junit.jupiter.Container
    import org.testcontainers.junit.jupiter.Testcontainers
    
    @Testcontainers
    @Isolated
    class BasicLoomTest {
      @JvmField
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 11:15:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top