Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,080 for Builds (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

                includeBuild "b"
            """
    
            file("a/settings.gradle") << ""
            file("b/settings.gradle") << ""
    
            file("a/build.gradle") << "task t {}"
            file("a/buildSrc/build.gradle") << ""
            file("b/build.gradle") << "task t {}"
            file("b/buildSrc/build.gradle") << ""
    
            buildScript """
                task t {
                    dependsOn gradle.includedBuild("a").task(":t")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. .space/safe-merge.json

    {
      "version": "1.0",
      "builds": [
        {
          "teamcity": {
            "configuration": "Kotlin_KotlinDev_SafeMerge",
            "url": "https://buildserver.labs.intellij.net",
            "token": "${space-safe-merge-kt}",
            "ssl-keystore": "BuildServer client"
          }
        }
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 27 13:43:47 UTC 2023
    - 280 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/StageTest.groovy

    import org.gradle.util.internal.DefaultGradleVersion.Stage
    import spock.lang.Specification
    
    class StageTest extends Specification {
        def "builds simple stage"() {
            when:
            def s = Stage.from(3, "4")
    
            then:
            s.stage == 3
            s.number == 4
        }
    
        def "builds stage with patch no"() {
            when:
            def s = Stage.from(3, "4a")
    
            then:
            s.stage == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 10 06:35:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. ci/official/README.md

    #
    #   Bazel will cache your builds in tensorflow/build_output/cache,
    #   and will also try using public build cache results to speed up
    #   your builds. This usually saves a lot of time, especially when
    #   re-running tests. However, note that:
    #
    #    - New environments like new CUDA versions, changes to manylinux,
    #      compilers, etc. can cause undefined behavior such as build failures
    #      or tests passing incorrectly.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

        /**
         * Creates an implicit included build. An implicit build is-a nested build that is managed by Gradle and whose outputs are used by dependency resolution.
         */
        IncludedBuildState addImplicitIncludedBuild(BuildDefinition buildDefinition);
    
        /**
         * Locates the buildSrc build for the given build, if present. Returns null if the given build does not have an associated buildSrc build.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

            def invalidJdkHome1 = createInvalidJdkHome("jdk1")
            def invalidJdkHome2 = createInvalidJdkHome("jdk2")
    
            // The builds should trigger toolchains discovery; here it's done from different subprojects in order to test
            // that the JVM installation detection is cached during a build
            def configureJavaExecToUseToolchains =
                """
                apply plugin: 'jvm-toolchains'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/README.adoc

    There are different ways to work with the sample:
    
    - You may build or import the umbrella build in the root.
      There you can, for example, run the Spring Boot web application via `./gradlew :server-application:app:bootRun` or install the Android app using `./gradlew :android-app:app:installDebug`.
    - You may only build or import one of the application builds directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top