Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,950 for Builds (0.12 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

         *
         * <p>If the target Gradle version is &gt;=6.8 then you can execute tasks from included builds. You can target tasks from included builds by specifying the task identity path (i.e. {@code
         * ':included-build-name:subproject-name:taskName'}).</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        default DependencyResolverResult collect(@Nonnull Session session, @Nonnull DependencyCoordinate root) {
            return collect(DependencyResolverRequest.build(session, DependencyResolverRequest.RequestType.COLLECT, root));
        }
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    By watching the file system, Gradle keeps the VFS current between builds.
    
    == Enable
    
    Gradle enables file system watching by default for supported operating systems since Gradle 7.
    
    Run the build with the '--watch-fs' flag to force file system watching for a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIntegrationTest.groovy

    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.build.BuildTestFile
    
    class CompositeBuildBuildSrcIntegrationTest extends AbstractIntegrationSpec {
    
        def "included and composing builds can contain buildSrc builds"() {
            def outerBuild = new BuildTestFile(testDirectory, "root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

        /**
         * Called once per build invocation on a build, to register any build scoped services to use during that build invocation. These services are closed at the end of the build invocation.
         *
         * <p>Global, user home, build session and build tree services are visible to the build scope services, but not vice versa.</p>
         *
         * @see Scope.Build
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                projects.values().each { it.writeFiles() }
            }
        }
    
        class ProjectFixture {
            final BuildFixture build
            final String path
            final Map<String, TaskFixture> tasks = [:]
    
            ProjectFixture(BuildFixture build, String path) {
                this.build = build
                this.path = path
            }
    
            TaskFixture task(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    	config *tcp.TcpProxy, class istionetworking.ListenerClass, svc *model.Service,
    ) *listener.Filter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    		}
    	}
    	return webhookAuthResolverWrapper
    }
    
    // AuthenticationInfoResolver builds rest.Config base on the server or service
    // name and service namespace.
    type AuthenticationInfoResolver interface {
    	// ClientConfigFor builds rest.Config based on the hostPort.
    	ClientConfigFor(hostPort string) (*rest.Config, error)
    	// ClientConfigForService builds rest.Config based on the serviceName and
    	// serviceNamespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/RootBuildLifecycleListener.java

    import org.gradle.internal.service.scopes.StatefulListener;
    
    /**
     * A listener that is notified when a root build is started and completed. No more than one root build may run at a given time.
     *
     * A root build may contain zero or more nested builds, such as `buildSrc` or included builds.
     *
     * This listener type is available to services from build tree up to global services.
     */
    @EventScope(Scope.BuildTree.class)
    @StatefulListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top