Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,080 for Builds (0.1 sec)

  1. src/cmd/go/go11.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.1
    
    package main
    
    // Test that go1.1 tag above is included in builds. main.go refers to this definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 300 bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    // Expected cache-miss:
    // 1. CompileAll is the seed build
    // 2. Gradleception which re-builds Gradle with a new Gradle version
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
    // 5. Compile All for the experimental build cache NG
    // 6. BuildCommitDistribution may build a commit which is not built before
        isInBuild(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 05:49:29 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

        }
    
        def "builds those component binaries that are buildable and skips those that are not" () {
            withLibBinaries("buildableBinary1", "notBuildableBinary", "buildableBinary2")
    
            when:
            run "assemble"
    
            then:
            result.assertTasksExecuted(":libBuildableBinary1", ":libBuildableBinary2", ":assemble")
    
            when:
            run "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsConcurrencyIntegrationTest.groovy

            parallelBuildSucceeds('test')
        }
    
        def "Gradle API and TestKit dependency JAR files are the same when run by concurrent tasks within one build"() {
            given:
            setupProjects(CONCURRENT_TASKS_PROJECT_COUNT) { projectDirName, buildFile ->
                file("$projectDirName/build.gradle") << resolveGradleApiAndTestKitDependencies()
            }
    
            setupSettingsFile(CONCURRENT_TASKS_PROJECT_COUNT)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/build.gradle.kts

        api(project(":build-events"))
        api(project(":build-operations"))
        api(project(":core"))
        api(project(":daemon-protocol"))
        api(project(":enterprise-operations"))
        api(project(":stdlib-java-extensions"))
        api(project(":problems-api"))
        api(project(":service-provider"))
        api(project(":tooling-api"))
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(libs.groovy) // for 'Closure'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/config/builder.go

    }
    
    // BuildCompleteSources builds only those sources that already contain all parameters
    // needed by their templates. Specifically, they are not missing any of the well-known
    // parameters: "From", "To", or "Namespace".
    func (b *Builder) BuildCompleteSources() *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	systemNS := istio.ClaimSystemNamespaceOrFail(out.t, out.t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. hack/make-rules/build.sh

    # 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.
    
    # This script sets up a go workspace locally and builds all go components.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 05 14:36:57 UTC 2024
    - 936 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildInclusionCoordinator.java

        }
    
        public void prepareForInclusion(IncludedBuildState build, boolean asPlugin) {
            if (loadedBuilds.add(build)) {
                // Load projects (e.g. by running the settings script, etc.) only the first time the build is included by another build.
                // This is to deal with cycles and the build being included multiple times in the tree
                build.ensureProjectsLoaded();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. .bazelrc

    #     dbg:              Build with debug info
    #
    # TF version options;
    #     v2: Build TF v2
    #
    # Feature and Third party library support options:
    #     xla:          Build TF with XLA
    #     tpu:          Build TF with TPU support
    #     cuda:         Build with CUDA support.
    #     cuda_clang    Build with CUDA Clang support.
    #     rocm:         Build with AMD GPU support (rocm)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/work.go

    A workspace is specified by a go.work file that specifies a set of
    module directories with the "use" directive. These modules are used as
    root modules by the go command for builds and related operations.  A
    workspace that does not specify modules to be used cannot be used to do
    builds from local modules.
    
    go.work files are line-oriented. Each line holds a single directive,
    made up of a keyword followed by arguments. For example:
    
    	go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top