Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,261 for buildC (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/basic")
                description = "Defining and using a composite build"
                category = "Build organization"
            }
    
            compositeBuildsDeclaredSubstitutions {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/declared-substitution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

        doLast {
            fileCollection.files
        }
    }
    """
            // Ensure build scripts compiled
            run("help")
    
            when:
            def build1 = executer.withTasks("redThings").withArgument("-Dcrash=true").start()
            build1.waitForFailure()
    
            run("redThings")
    
            then:
            output.count("Transforming") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    				}
    			}
    			continue
    		}
    
    		if cfg.BuildN {
    			continue
    		}
    
    		if cleanFile[name] || cleanExt[filepath.Ext(name)] || toRemove[name] {
    			removeFile(filepath.Join(p.Dir, name))
    		}
    	}
    
    	if cleanI && p.Target != "" {
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "rm -f %s", p.Target)
    		}
    		if !cfg.BuildN {
    			removeFile(p.Target)
    		}
    	}
    
    	if cleanR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top