Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,327 for buildC (0.07 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB.file("foo/.gitkeepdir").touch()
            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
                    apply plugin: 'java'
                    group = 'org.test'
                    version = '1.0'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/build.sh

      # command to reattempt build a few times in the case of failure (b/302558736)
      set +e
      for i in $(seq 1 5)
      do
        docker build \
        --build-arg REQUIREMENTS_FILE=jax.requirements.txt \
        --target=$target \
        --cache-from "$IMAGE" \
        -t "$IMAGE" -t "$AR_IMAGE" . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildLookupIntegrationTest.groovy

                rootProject.name = 'buildB'
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
            """
            repo.commit("version 2")
            repo.createLightWeightTag("2.0")
        }
    
        @ToBeFixedForConfigurationCache
        def "source dependency builds are not visible to main build"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == resolve.id
    
            def buildIdentifiedEvents = operations.progress(BuildIdentifiedProgressDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        match_all = [
            ":is_cuda_enabled",
            ":windows",
        ],
    )
    
    # Config setting to use in select()s to distinguish open source build from
    # google internal build on configurable attributes.
    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    config_setting(
        name = "oss",
        flag_values = {":oss_setting": "True"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            when:
            def build = executer.withTasks("help").withArguments("--info").start()
    
            then:
            build.waitForFinish()
    
            and:
            daemons.daemons.size() == 2
    
            and:
            !build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
        }
    
        def "starts a new daemon when daemons with canceled builds do not become available"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. build-logic-commons/build.gradle.kts

    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 14:22:22 UTC 2021
    - 183 bytes
    - Viewed (0)
  8. maven-model/src/test/java/org/apache/maven/model/SerializationTest.java

            // Serialize an inner child here so that the BaseObject.childrenTracking is non null
            Build build = model.getBuild();
    
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            try (ObjectOutputStream oos = new ObjectOutputStream(baos)) {
                oos.writeObject(build);
            }
    
            Build build2;
            ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/README.adoc

    The build is then included in the root project's _settings_ file as seen in the above snippet.
    For more details about included builds, see link:{userManualPath}/composite_builds.html[Composing Builds] chapter.
    
    The `myproject.java-conventions` plugin is then applied to the `buildSrc` build:
    ====
    include::sample[dir="kotlin",files="buildSrc/build.gradle.kts[tags=plugins]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/structuring-builds-1.png

    structuring-builds-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top