Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,080 for Builds (0.26 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/TestDeploymentFixture.groovy

                    }
    
                    @TaskAction
                    void doDeployment() {
                        // we set a different key for every build so we can detect if we
                        // somehow get a different deployment handle between builds
                        def key = System.currentTimeMillis()
    
                        TestDeploymentHandle handle = getDeploymentRegistry().get('test', TestDeploymentHandle.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 26 00:54:23 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  2. tools/istio-docker.mk

    .PHONY: docker.push
    
    ### Docker commands ###
    # Below provides various commands to build/push docker images.
    # These are all wrappers around ./tools/docker, the binary that controls docker builds.
    # Builds can also be done through direct ./tools/docker invocations.
    # When using these commands the flow is:
    #  1) make target calls ./tools/docker
    #  2) ./tools/docker calls `make build.docker.x` targets to compute the dependencies required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 21:56:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

            this.projectBuilds = projectBuilds;
        }
    
        public int getNumberOfBuilds() {
            return projectBuilds.size();
        }
    
        /**
         * Gets all the builds that have no reactor-dependencies
         *
         * @return A set of all the initial builds
         */
        public List<MavenProject> getRootSchedulableBuilds() {
            Set<MavenProject> result = new LinkedHashSet<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/telemetry/telemetry.go

    	servicePortStatPattern       = "%SERVICE_PORT%"
    	serviceTargetPortStatPattern = "%TARGET_PORT%"
    	servicePortNameStatPattern   = "%SERVICE_PORT_NAME%"
    	subsetNameStatPattern        = "%SUBSET_NAME%"
    )
    
    // BuildStatPrefix builds a stat prefix based on the stat pattern.
    func BuildStatPrefix(statPattern string, host string, subset string, port *model.Port, targetPort int, attributes *model.ServiceAttributes) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. build-logic/build.gradle.kts

            if (jvmArgs.size > 1) {
                throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
                    "which may cause two daemons to be spawned on CI and in IDEA. " +
                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    
    fun readProperties(propertiesFile: File) = java.util.Properties().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/organizingGradleProjects/customGradleDistribution/groovy/build.gradle

    tasks.register('downloadGradle', DownloadGradle) {
        description = 'Downloads the Gradle distribution with a given version.'
        gradleVersion = '4.6'
    }
    
    tasks.register('createCustomGradleDistribution', Zip) {
        description = 'Builds custom Gradle distribution and bundles initialization scripts.'
    
        dependsOn downloadGradle
    
        def projectVersion = project.version
        archiveFileName = downloadGradle.gradleVersion.map { gradleVersion ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 797 bytes
    - Viewed (0)
  7. platforms/native/tooling-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Tooling API model builders for native builds"
    
    errorprone {
        disabledChecks.addAll(
            "MixedMutabilityReturnType", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":ide")) {
            because("To pick up various builders (which should live somewhere else)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *       {@code "META-INF/versions/{n}/"} subdirectory, builds a singleton map with
         *       the module name declared in that descriptor.</li>
         *   <li>Otherwise if an {@code "Automatic-Module-Name"} attribute is declared in the
         *       {@code META-INF/MANIFEST.MF} file, builds a singleton map with the value of that attribute.</li>
         * </ul>
         *
         * Otherwise builds an empty map.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gccgo_m.txt

    # It's absurd, but builds with -compiler=gccgo used to fail to build module m.
    # golang.org/issue/34358
    
    env GO111MODULE=off
    
    [short] skip
    [cross] skip # gccgo can't necessarily cross-compile
    
    cd m
    go build
    exists m$GOEXE
    rm m$GOEXE
    [exec:gccgo] go build -compiler=gccgo
    [exec:gccgo] exists m$GOEXE
    
    -- m/go.mod --
    module m
    -- m/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 368 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    == Step 7. Understanding the Build script
    Each subproject contains its own `build.gradle(.kts)` file.
    
    The `build.gradle(.kts)` file is the core component of the build process and defines the tasks necessary to build the project.
    
    The `build.gradle(.kts)` file is read and executed by Gradle.
    
    Take a closer look at the build file in your `app` subproject (under the `app` directory):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top