Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for xtestonly (0.14 sec)

  1. pkg/envoy/proxy.go

    	ConfigPath    string
    	ConfigCleanup bool
    	AdminPort     int32
    	DrainDuration *durationpb.Duration
    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/BUILD

        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":tfr-opt",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
            "@llvm-project//mlir:run_lit.sh",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/BUILD

            "@com_google_absl//absl/log",
            "@com_google_absl//absl/strings",
            "@local_xla//xla:statusor",
        ],
    )
    
    cc_library(
        name = "test_util",
        testonly = 1,
        srcs = ["test_util.cc"],
        hdrs = ["test_util.h"],
        deps = [
            ":shape_inference",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:core_cpu_base",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

        test_file_exts = [
            "mlir",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
        ],
    )
    
    cc_library(
        name = "tpu_cluster_formation",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

        deps = [
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
            "@local_xla//xla/mlir_hlo",
        ],
    )
    
    cc_library(
        name = "test_utils",
        testonly = True,
        srcs = ["test_utils.cc"],
        hdrs = ["test_utils.h"],
        deps = [
            "//tensorflow/compiler/mlir:register_common_dialects",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/BUILD

            "//tensorflow/core/protobuf:for_core_protos_cc",
        ] + if_not_mobile(["//tensorflow/core:lib"]) + if_android(["//tensorflow/core:portable_tensorflow_lib_lite"]),
    )
    
    cc_library(
        name = "test_utils",
        testonly = True,
        hdrs = ["test_utils.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/core:test",
            "//tensorflow/core/platform:protobuf",
        ],
    )
    
    tf_cc_test(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

            "//tensorflow/python/types:core",
            "//third_party/py/numpy",
            "@absl_py//absl/testing:parameterized",
        ],
    )
    
    pytype_strict_library(
        name = "quantize_model_test_base",
        testonly = 1,
        srcs = ["integration_test/quantize_model_test_base.py"],
        tags = ["no_pip"],
        deps = [
            ":representative_dataset",
            "//tensorflow:tensorflow_py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    func (a *Agent) EnvoyDisabled() bool {
    	return a.envoyOpts.TestOnly || a.cfg.DisableEnvoy
    }
    
    // WaitForSigterm if true indicates calling Run will block until SIGTERM or SIGNT is received.
    func (a *Agent) WaitForSigterm() bool {
    	return a.EnvoyDisabled() && !a.envoyOpts.TestOnly
    }
    
    func (a *Agent) generateNodeMetadata() (*model.Node, error) {
    	var pilotSAN []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            "@local_xla//xla/mlir_hlo:all_passes",
            "@local_xla//xla/mlir_hlo:hlo_dialect_registration",
            "@stablehlo//:register",
        ],
    )
    
    tf_cc_binary(
        name = "odml-to-stablehlo-opt",
        testonly = True,
        tags = ["hostonly"],
        deps = [
            ":compose_uniform_quantized_type_pass",
            ":fold_broadcast_pass",
            ":fuse_convolution_pass",
            ":legalize_stablehlo_composite_to_tfl_custom",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. tensorflow/c/BUILD

            ":tf_status_headers",
        ],
    )
    
    # -----------------------------------------------------------------------------
    # Tests
    
    tf_cuda_library(
        name = "c_test_util",
        testonly = 1,
        srcs = ["c_test_util.cc"],
        hdrs = ["c_test_util.h"],
        visibility = [
            "//learning/brain:__subpackages__",
            "//tensorflow:__subpackages__",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top