Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for build1 (0.08 sec)

  1. .github/workflows/build.yml

            with:
              report_paths: '**/build/test-results/*/TEST-*.xml'
              check_name: OpenJDK 11 Test Report
    
          - name: Publish Test Results
            uses: EnricoMi/publish-unit-test-result-action@v2
            if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
            with:
              files: |
                **/build/test-results/*/TEST-*.xml
    
      testzulu11:
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 12 04:49:37 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. build-logic-commons/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 04:30:54 UTC 2025
    - 800 bytes
    - Viewed (0)
  3. build-logic-commons/build-platform/build.gradle.kts

    val javaParserVersion = "3.18.0"
    // Note: this currently still contains 3/4 logic as we will temporarily have Groovy 3 for the build itself until we move to a Gradle built with Groovy 4
    // It can be removed or changed to 4/5 logic (if necessary) at that point.
    val groovyVersion = GroovySystem.getVersion()
    val isGroovy4 = VersionNumber.parse(groovyVersion).major >= 4
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:16:30 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. .github/workflows/build-docs.yml

          - uses: actions/cache@v4
            with:
              key: mkdocs-cards-${{ matrix.lang }}-${{ github.ref }}
              path: docs/${{ matrix.lang }}/.cache
          - name: Build Docs
            run: python ./scripts/docs.py build-lang ${{ matrix.lang }}
          - uses: actions/upload-artifact@v5
            with:
              name: docs-site-${{ matrix.lang }}
              path: ./site/**
              include-hidden-files: true
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/c/BUILD

    A. Unique TensorFlower <******@****.***> 1765112205 -0800
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sun Dec 07 13:04:09 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  6. build-logic-settings/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    description = "Provides settings plugins for configuring global build configuration"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 04:30:54 UTC 2025
    - 785 bytes
    - Viewed (0)
  7. ci/official/containers/ml_build/Dockerfile

    # Install devtoolset build dependencies
    COPY setup.sources.sh /setup.sources.sh
    COPY setup.packages.sh /setup.packages.sh
    COPY builder.packages.txt /builder.packages.txt
    
    RUN /setup.sources.sh && /setup.packages.sh /builder.packages.txt
    
    # Setup Python
    COPY setup.python.sh /setup.python.sh
    COPY builder.requirements.txt /builder.requirements.txt
    RUN /setup.python.sh python3.9 /builder.requirements.txt
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Thu Dec 18 21:55:23 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * capacity. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> The {@link ImmutableLongArray} that is built will very likely
       * occupy more memory than necessary; to trim memory usage, build using {@code
       * builder.build().trimmed()}.
       */
      public static Builder builder() {
        return new Builder(10);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 14:49:24 UTC 2025
    - 22K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableIntArray.java

       * capacity. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> The {@link ImmutableIntArray} that is built will very likely occupy
       * more memory than necessary; to trim memory usage, build using {@code
       * builder.build().trimmed()}.
       */
      public static Builder builder() {
        return new Builder(10);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 14:49:24 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java

                    .nature(nature)
                    .build();
        }
    
        /**
         * Creates a new builder for version range resolver requests.
         *
         * @return a new builder, never {@code null}
         */
        @Nonnull
        static VersionResolverRequestBuilder builder() {
            return new VersionResolverRequestBuilder();
        }
    
        /**
         * Builder for {@link VersionRangeResolverRequest}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top