Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,950 for Builds (0.12 sec)

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import java.io.File;
    
    import org.apache.maven.toolchain.model.PersistedToolchains;
    
    /**
     * Builds the toolchains model from a previously configured filesystem path to the toolchains file.
     * <strong>Note:</strong> This is an internal component whose interface can change without prior notice.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         */
        void registerWatchableHierarchy(File rootDirectoryForWatching);
    
        /**
         * Returns if anything is being watched.
         */
        boolean isWatchingAnyLocations();
    
        /**
         * Called when the build is finished.
         *
         * This operation happens in the context of executing the build from the client's perspective.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf-info.out

    ...
    
    > Task :hello SKIPPED
    Skipping task ':hello' as task onlyIf 'there is no property skipHello' is false.
    :hello (Thread[included builds,5,main]) completed. Took 0.018 secs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 201 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
     * One or more builds may be run during a session. For example, when running in continuous mode, multiple builds are run during a single session.
     */
    @EventScope(Scope.BuildSession.class)
    public interface BuildSessionLifecycleListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         * These services are closed at the end of the build invocation.
         *
         * <p>{@link Build} and parent scope services are visible to {@link Gradle} scope services, but not vice versa.</p>
         */
        interface Gradle extends Build {}
    
        /**
         * These services are created once per project per build invocation.
         * These services are closed at the end of the build invocation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top