Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 114 for Builds (0.17 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

        }
    
        /**
         * This is not correct!
         *
         * These services are normally available in the build session scope, not the project scope.
         * However, workers do not observe the same lifecycle as the build and do not stop or recreate build session services between builds.
         * This works around that by recreating the build session scope services for every request.
         */
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            lastExtracter.releaseAll()
    
            // wait for the build to finish
            handle.waitForFinish()
            then:
            // we should have extracted the file into a different directory for each extracter
            file("build/extract/thread_0/file.txt").assertExists()
            file("build/extract/thread_1/file.txt").assertExists()
            file("build/extract/thread_2/file.txt").assertExists()
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. .teamcity/subprojects.json

      {
        "name": "build-cache-example-client",
        "path": "platforms/core-execution/build-cache-example-client",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-cache-http",
        "path": "platforms/core-execution/build-cache-http",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "build-cache-local",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. pkg/kube/util.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    var cronJobNameRegexp = regexp.MustCompile(`(.+)-\d{8,10}$`)
    
    // BuildClientConfig builds a client rest config from a kubeconfig filepath and context.
    // It overrides the current context with the one provided (empty to use default).
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

    import org.gradle.util.GradleVersion;
    
    import java.util.List;
    
    /**
     * Defines the shared services scoped to a particular Gradle user home directory. These services are reused across multiple builds and operations.
     */
    public class GradleUserHomeScopeServices extends WorkerSharedUserHomeScopeServices implements ServiceRegistrationProvider {
        private final ServiceRegistry globalServices;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            when using the daemon, especially when using small heap and building a large project.
            Due to a bug (https://builds.gradle.org/viewLog.html?buildId=284033&tab=buildResultsDiv&buildTypeId=Gradle_Master_Performance_PerformanceExperimentsLinux) no instances of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            connector.embedded(embedded)
    
            if (GradleVersion.version(dist.getVersion().version) < GradleVersion.version("6.0")) {
                connector.searchUpwards(false)
            } else {
                // buildSrc builds are allowed to be missing their settings file
                if (projectDir.name != "buildSrc") {
                    def settingsFile = projectDir.file('settings.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

    import org.gradle.internal.extensions.core.serviceOf
    import org.gradle.execution.taskgraph.TaskExecutionGraphInternal
    import org.gradle.initialization.SettingsState
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.build.PublicBuildPath
    import org.gradle.internal.composite.IncludedBuildInternal
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.util.Path
    import java.io.File
    import java.util.Objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

      linux/arm64
      linux/s390x
      linux/ppc64le
    )
    
    # The node platforms we build for
    readonly KUBE_SUPPORTED_NODE_PLATFORMS=(
      linux/amd64
      linux/arm64
      linux/s390x
      linux/ppc64le
      windows/amd64
    )
    
    # If we update this we should also update the set of platforms whose standard
    # library is precompiled for in build/build-image/cross/Dockerfile
    readonly KUBE_SUPPORTED_CLIENT_PLATFORMS=(
      linux/amd64
      linux/386
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (project.getProjectPath().equals(Path.ROOT)) {
                // Project is the root of a build, so include the root projects of any builds nested under that build
                buildRegistry.visitBuilds(build -> {
                    if (build.isImportableBuild() && build.isProjectsLoaded()) {
                        ProjectState rootProject = build.getProjects().getRootProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top