Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for bagel (0.04 sec)

  1. configure.py

    
    def retrieve_bazel_version():
      """Retrieve installed bazel version (or bazelisk).
    
      Returns:
        The bazel version detected.
      """
      bazel_executable = which('bazel')
      if bazel_executable is None:
        bazel_executable = which('bazelisk')
        if bazel_executable is None:
          print('Cannot find bazel. Please install bazel/bazelisk.')
          sys.exit(1)
    
      stderr = open(os.devnull, 'wb')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. .gitignore

    # git history files
    .history_rewritten_*
    # Eclipse artifacts
    .project
    .pydevproject
    #Vagrant
    tools/vagrant/.vagrant/
    # Intellij
    *.iml
    .idea/
    .run/
    # Visual Studio Code
    .vscode/
    # Bazel
    /bazel-*
    # vi swap files
    .*.swp
    # vi backups
    *.bak
    # common backups
    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/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
    - 9K bytes
    - Viewed (1)
  4. .bazelrc

    build --spawn_strategy=standalone
    build -c opt
    
    # Make Bazel print out all options from rc files.
    build --announce_rc
    
    # TODO(mihaimaruseac): Document this option or remove if no longer needed
    build --define=grpc_no_ares=true
    
    # See https://github.com/bazelbuild/bazel/issues/7362 for information on what
    # --incompatible_remove_legacy_whole_archive flag does.
    # This flag is set to true in Bazel 1.0 and newer versions. We tried to migrate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. 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)
  6. src/crypto/internal/boring/fipstls/tls.go

    func Abandon() {
    	// Note: Not using boring.UnreachableExceptTests because we want
    	// this test to happen even when boring.Enabled = false.
    	name := runtime_arg0()
    	// Allow _test for Go command, .test for Bazel,
    	// NaClMain for NaCl (where all binaries run as NaClMain),
    	// and empty string for Windows (where runtime_arg0 can't easily find the name).
    	// Since this is an internal package, testing that this isn't used on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            "//tensorflow/core:headers",
        ],
        outs = ["include"],
        cmd = """
        mkdir $@
        for f in $(SRCS); do
          d="$${f%/*}"
          d="$${d#bazel-out/*/genfiles/}"
          d="$${d#bazel-out/*/bin/}"
    
          if [[ $${d} == *local_config_* ]]; then
            continue
          fi
    
          if [[ $${d} == external* ]]; then
            extname="$${d#*external/}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/runlit.site.cfg.py

    # limitations under the License.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
      srcdir = os.environ['TEST_SRCDIR']
      real_test_srcdir = srcdir[:srcdir.find('tensorflow/compiler/mlir')]
      external_srcdir = os.path.join(real_test_srcdir, 'external')
    else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/BUILD

            "@com_google_protobuf//:protobuf_headers",
            "@flatbuffers//:runtime_cc",
            "@local_tsl//tsl/platform:status",
        ] + select({
            # This is required when running `tflite_convert` from `bazel`.
            # It requires to link with TensorFlow Ops to get the op definitions.
            ":tflite_convert_with_select_tf_ops": [
                "//tensorflow/core:ops",
            ],
            "//conditions:default": [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/BUILD

        mlir_components = "Bridge",
        tags = [
            "manual",
        ],
    )
    
    # Utility library for benchmark binaries, used by the *_benchmark rules that are
    # added by the tfcompile bazel macro.
    cc_library(
        name = "benchmark",
        srcs = ["benchmark.cc"],
        hdrs = ["benchmark.h"],
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top