Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for test_utils (0.18 sec)

  1. pkg/controller/testutil/test_utils.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testutil
    
    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"reflect"
    	"sync"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/saved_model/BUILD

        ] + 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)
  4. tensorflow/compiler/mlir/tfr/BUILD

            "//tensorflow/compiler/mlir/python/mlir_wrapper:filecheck_wrapper",
            "//tensorflow/python/platform:client_testlib",
        ],
    )
    
    py_strict_library(
        name = "test_utils",
        srcs = ["python/test_utils.py"],
        srcs_version = "PY3",
        deps = [
            "//tensorflow:tensorflow_py",
            "//tensorflow/python/eager:backprop",
            "//tensorflow/python/framework:test_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    #include "xla/client/client_library.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/lib/monitoring/test_utils.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/config.pb.h"
    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    #include "tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.h"
    #include "tensorflow/c/experimental/saved_model/core/saved_model_utils.h"
    #include "tensorflow/c/experimental/saved_model/core/test_utils.h"
    #include "tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/lib/monitoring/test_utils.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v1 {
    namespace {
    
    using ::tensorflow::monitoring::testing::CellReader;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/test_utils.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/client/xla_builder.h"
    #include "xla/client/xla_computation.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "xla/shape_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

        static FeaturePreviews featurePreviews() {
            return new FeaturePreviews()
        }
    
        static TestUtil create(File rootDir, File userHomeDir = null) {
            return new TestUtil(rootDir, userHomeDir)
        }
    
        static TestUtil create(TestDirectoryProvider testDirectoryProvider) {
            return new TestUtil(testDirectoryProvider.testDirectory)
        }
    
        <T extends Task> T task(Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

    Dmitrii Gridin <******@****.***> 1717506725 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top