Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for bagel (0.06 sec)

  1. samples/wasm_modules/header_injector/.gitignore

    bazel-*
    compile_commands.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 36 bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/jax.requirements.txt

    numpy==1.23.4;python_version=="3.11"
    numpy==1.22.4;python_version<"3.11"
    scipy==1.11.2;python_version=="3.12"
    scipy==1.9.2;python_version=="3.11"
    scipy==1.7.3;python_version<"3.11"
    ml_dtypes>=0.2.0
    
    # For using Python 3.11 with Bazel 6 (b/286090018)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 20:02:17 UTC 2024
    - 570 bytes
    - Viewed (0)
  3. ci/official/utilities/cleanup_docker.sh

    container for you! You can delete the container with:
    
    $ docker rm -f tf
    
    You can also execute more commands within the container with e.g.:
    
    $ docker exec tf bazel clean
    $ docker exec -it tf bash
    EOF
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:26:29 UTC 2023
    - 998 bytes
    - Viewed (0)
  4. .bazelversion

    6.5.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 21:13:23 UTC 2024
    - 85 bytes
    - Viewed (0)
  5. samples/wasm_modules/header_injector/BUILD

    load("@proxy_wasm_cpp_sdk//bazel/wasm:wasm.bzl", "wasm_cc_binary")
    
    wasm_cc_binary(
        name = "plugin-0.0.1.wasm",
        srcs = [
            "plugin.cc",
            "plugin.h",
        ],
        deps = [
            "@proxy_wasm_cpp_sdk//:proxy_wasm_intrinsics",
        ],
        defines = [
            "INJECTION_VERSION=0.0.1"
        ],
    )
    
    wasm_cc_binary(
        name = "plugin-0.0.2.wasm",
        srcs = [
            "plugin.cc",
            "plugin.h",
        ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 554 bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

          placeholder: e.g., Linux Ubuntu 16.04
      - type: input
        id: Python
        attributes:
          label: Python version
          placeholder: e.g., 3.9
      - type: input
        id: Bazel
        attributes:
          label: Bazel version
          description: If compiling from source
      - type: input
        id: Compiler
        attributes:
          label: GCC/compiler version
          description: If compiling from source
      - type: input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 18:25:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. ci/official/envs/public_cache

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # Sourcing this enables Bazel remote cache (public, read-only)
    # The cache configs are different for MacOS and Linux
    if [[ $(uname -s) == "Darwin" ]]; then
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache"
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1011 bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/testing/testserver.go

    // test, we can just look at the runtime call stack. However, bazel compiles go
    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. .gitignore

    .DS_Store
    .ipynb_checkpoints
    node_modules
    /.bazelrc.user
    /.tf_configure.bazelrc
    /xla_configure.bazelrc
    /bazel-*
    /bazel_pip
    /tools/python_bin_path.sh
    /tensorflow/tools/git/gen
    /pip_test
    /_python_build
    *.pyc
    __pycache__
    *.swp
    .vscode/
    cmake_build/
    tensorflow/contrib/cmake/_build/
    .idea/**
    /build/
    [Bb]uild/
    /build_output/
    /tensorflow/core/util/version_info.cc
    /tensorflow/python/framework/fast_tensor_util.cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/benchmark_main.template

    //
    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top