Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,739 for esbuild (0.18 sec)

  1. common/scripts/gobuild.sh

    OPTIMIZATION_FLAGS=(-trimpath)
    if [ "${DEBUG}" == "1" ]; then
        OPTIMIZATION_FLAGS=()
    fi
    
    time GOOS=${BUILD_GOOS} GOARCH=${BUILD_GOARCH} ${GOBINARY} build \
            ${V} "${GOBUILDFLAGS_ARRAY[@]}" ${GCFLAGS:+-gcflags "${GCFLAGS}"} \
            -o "${OUT}" \
            "${OPTIMIZATION_FLAGS[@]}" \
            -pkgdir="${GOPKG}/${BUILD_GOOS}_${BUILD_GOARCH}" \
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Oct 21 14:08:46 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/BUILD

            "//tensorflow/core/platform:build_config_root_bzl",
            "//tensorflow/core/platform:rules_cc_bzl",
            "//third_party/compute_library:build_defs_bzl",
            "//third_party/llvm_openmp:openmp_bzl",
            "//third_party/mkl_dnn:build_defs_bzl",
            "@bazel_skylib//lib:new_sets",
            "@bazel_skylib//rules:common_settings",
            "@local_config_cuda//cuda:build_defs_bzl",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  3. tensorflow/c/BUILD

    # Description:
    # C API for TensorFlow, for use by client language bindings.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@local_config_tensorrt//:build_defs.bzl", "if_tensorrt")
    load("@local_tsl//tsl/platform:rules_cc.bzl", "cc_library")
    load(
        "//tensorflow:tensorflow.bzl",
        "check_deps",
        "if_google",
        "if_not_mobile",
        "tf_cc_test",
        "tf_copts",
        "tf_cuda_library",
        "tf_custom_op_library",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/build.sh

      fi
    fi
    
    # Build for both JAX and TF usage.  We do these in one place because they share
    # almost all of the same cache layers
    export DOCKER_BUILDKIT=1
    for target in jax tf; do
      IMAGE="gcr.io/tensorflow-sigs/build-arm64:$target-$TAG"
      docker pull "$IMAGE" || true
      # Due to some flakiness of resources pulled in the build, allow the docker
      # command to reattempt build a few times in the case of failure (b/302558736)
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/gradients/BUILD

    load(
        "//tensorflow:tensorflow.bzl",
        "if_libtpu",
        "tf_cuda_cc_test",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Library of gradient functions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:39:44 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
            run: ./native-image-tests/build/graal/ConsoleLauncher
    
      testandroid:
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/BUILD

    Jake Harmon <******@****.***> 1694027275 -0700
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/BUILD

    A. Unique TensorFlower <******@****.***> 1711560469 +0000
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  9. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	go build -C ${dir} -v
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 18 20:47:03 GMT 2023
    - 95 bytes
    - Viewed (0)
  10. common/scripts/report_build_info.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    if BUILD_GIT_REVISION=$(git rev-parse HEAD 2> /dev/null); then
      if [[ -z "${IGNORE_DIRTY_TREE}" ]] && [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
        BUILD_GIT_REVISION=${BUILD_GIT_REVISION}"-dirty"
      fi
    else
      BUILD_GIT_REVISION=unknown
    fi
    
    # Check for local changes
    tree_status="Clean"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.9K bytes
    - Viewed (0)
Back to top