Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for isIsolated (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

        HashCode getSecondaryInputHash();
    
        void isolateParametersIfNotAlready();
    
        FileNormalizer getInputArtifactNormalizer();
    
        FileNormalizer getInputArtifactDependenciesNormalizer();
    
        boolean isIsolated();
    
        DirectorySensitivity getInputArtifactDirectorySensitivity();
    
        DirectorySensitivity getInputArtifactDependenciesDirectorySensitivity();
    
        LineEndingSensitivity getInputArtifactLineEndingNormalization();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            return fileNormalizer;
        }
    
        @Override
        public FileNormalizer getInputArtifactDependenciesNormalizer() {
            return dependenciesNormalizer;
        }
    
        @Override
        public boolean isIsolated() {
            return isolatedParameters.isFinalized();
        }
    
        @Override
        public boolean requiresDependencies() {
            return requiresDependencies;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            expect:
            def original = 123
            def isolated = isolatableFactory.isolate(original)
            isolated.coerce(Integer).is(original)
            isolated.coerce(Number).is(original)
            isolated.coerce(Long) == null
            isolated.coerce(Short) == null
            isolated.coerce(Byte) == null
            isolated.coerce(String) == null
        }
    
        def "creates isolated long"() {
            expect:
            def original = 123L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/core.go

    				if isIsolate {
    					validIsolateCount++
    				}
    				// Push new embedding level, override status, and isolated
    				// status.
    				// No check for valid stack counter, since the level check
    				// suffices.
    				switch t {
    				case LRO:
    					stack.push(newLevel, L, isIsolate)
    				case RLO:
    					stack.push(newLevel, R, isIsolate)
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            snapshot != snapshotter.snapshot("other")
        }
    
        def "creates snapshot for isolated string"() {
            expect:
            def isolated = isolatableFactory.isolate("abc")
            snapshotter.snapshot("abc") == snapshotter.snapshot(isolated)
            snapshotter.snapshot("other") != snapshotter.snapshot(isolated)
        }
    
        def "creates snapshot for integer"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            List<String> list = ["foo", "bar"]
    
            when:
            serialize(isolatableFactory.isolate(list))
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
            newIsolatables[0].isolate() == list
        }
    
        def "can serialize/deserialize isolated Set"() {
            Set<String> list = ["foo", "bar"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    :gradle-issues: https://github.com/gradle/gradle/issues/
    
    = Isolated Projects
    
    Isolated Projects is a pre-alpha Gradle feature that extends the configuration cache to further improve performance, in particular the performance of Android Studio and IDEA sync.
    
    When isolated projects is enabled, the configuration model of Gradle projects are "isolated" from each other.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AttributeValuesIntegrationTest.groovy

        configurations.ok.attributes.attribute(attr, value)
    
        value[0].name = 'other'
        value.add(new Thing(name: 'c'))
    
        def isolated = configurations.ok.attributes.getAttribute(attr)
        assert isolated.size() == 2
        assert isolated[0].name == 'a'
        assert isolated[1].name == 'b'
    """
    
            expect:
            succeeds()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            then: "fetching with Isolated Projects"
            fixture.assertStateStored {
                modelsCreated(":", GradleProject, IsolatedGradleProjectInternal)
                modelsCreated(":lib1", IsolatedGradleProjectInternal)
            }
    
            checkGradleProject(projectModel, expectedProjectModel)
    
            when: "fetching again with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

         * @see IsolatedAction for the requirements to isolated actions
         * @since 8.8
         */
        @Incubating
        void beforeProject(IsolatedAction<? super Project> action);
    
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately after a project is evaluated.
         *
         * @param action The action to execute.
         * @see IsolatedAction for the requirements to isolated actions
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top