Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 236 for isIsolated (0.32 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

            if (isRoot()) {
                XmlFileContentMerger ipr = new XmlFileContentMerger(new XmlTransformer());
                // Instantiating an internal subclass is required for Isolated Projects-safe model building
                final IdeaProject ideaProject = instantiator.newInstance(IdeaProjectInternal.class, project, ipr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

            outputs.recompiledClasses('main', 'sum', 'greeter')
            outputs.deletedClasses("multiply")
        }
    
        @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC_5)
        def 'removing an isolated file does not rebuild anything'() {
            given:
            def outputs = new CompilationOutputsFixture(file("build/obj/main/debug"), [".o"])
            def app = new SwiftApp()
            settingsFile << "rootProject.name = 'app'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.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.internal.cc.impl.fixtures.SomeToolingModel
    
    class IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Composite builds allow you to:
    
    * Combine builds that are usually developed independently, for instance, when trying out a bug fix in a library that your application uses.
    * Decompose a large multi-project build into smaller, more isolated chunks that can be worked on independently or together as needed.
    
    A build that is included in a composite build is referred to as an *included build*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

     * {@link DependencyHandler} of a build script. The rules can be defined in two different ways:
     * <ol>
     *     <li>As an action directly when they are applied in the components section</li>
     *     <li>As an isolated class implementing the {@link ComponentMetadataRule} interface</li>
     * </ol>
     *
     * <p>Example shows a basic way of removing certain transitive dependencies from one of our dependencies.</p>
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.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.Plugin
    import org.gradle.api.Project
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    import org.gradle.tooling.model.GradleProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeIdeaModelBuilder.java

    import java.util.List;
    import java.util.Objects;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    
    /**
     * Builds the {@link org.gradle.tooling.model.idea.IdeaProject} model in Isolated Projects-compatible way.
     */
    @NonNullApi
    public class IsolatedProjectsSafeIdeaModelBuilder implements IdeaModelBuilderInternal, ParameterizedToolingModelBuilder<IdeaModelParameter> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

     * 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.isolated;
    
    import org.gradle.api.file.ArchiveOperations;
    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.problems.Problems;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        protected XcodeWorkspacePackage getRootXcodeWorkspace() {
            xcodeWorkspace("${rootProjectName}.xcworkspace")
        }
    
        protected XcodebuildExecutor getXcodebuild() {
            // Gradle needs to be isolated so the xcodebuild does not leave behind daemons
            assert executer.distribution.gradleHomeDir != null
            assert !executer.usesSharedDaemons()
            new XcodebuildExecutor(testDirectory)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            require(rootProject.findProperty(KotlinDslScriptsModel.SCRIPTS_GRADLE_PROPERTY_NAME) == null) {
                "Property ${KotlinDslScriptsModel.SCRIPTS_GRADLE_PROPERTY_NAME} is not supported with Isolated Projects"
            }
    
            return KotlinDslScriptsParameter(rootProject.resolveCorrelationIdParameter(), emptyList())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top