Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 296 for test_1 (0.15 sec)

  1. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    svn propset svn:date 2017-09-27T17:48:18.350817Z --revprop -r4
    
    cd git-README-only
    git remote set-url origin https://vcs-test.golang.org/git/README-only
    cd ..
    replace 'vcs-test.swtch.com' 'vcs-test.golang.org' other/pkg.go
    replace 'vcs-test.swtch.com' 'vcs-test.golang.org' pkg.go
    svn commit -m 'move from vcs-test.swtch.com to vcs-test.golang.org'
    svn propset svn:author rsc --revprop -r5
    svn propset svn:date 2017-10-04T15:08:26.291877Z --revprop -r5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGPreserveOrderIntegrationTest.groovy

                        System.out.println("Test2.afterClass()");
                    }
                }
            """
    
            when: succeeds "test"
    
            then:
            outputContains("""
    Test1.beforeClass()
    Test1.test1()
    Test1.test2()
    Test1.afterClass()
    """)
            outputContains("""
    Test2.beforeClass()
    Test2.test1()
    Test2.test2()
    Test2.afterClass()
    """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    using ::testing::Eq;
    
    class GetSizeInBytesTest : public ::testing::Test {
     protected:
      GetSizeInBytesTest() : ctx_() { ctx_.loadDialect<TF::TensorFlowDialect>(); }
    
      MLIRContext ctx_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 04:37:13 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/tests/runtime_test.cc

    #include "tensorflow/cc/experimental/libtf/tests/runtime_test.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    
    using ::tensorflow::testing::StatusIs;
    using ::testing::HasSubstr;
    using ::tf::libtf::impl::TaggedValueTensor;
    
    constexpr char kSimpleModel[] =
        "tensorflow/cc/experimental/libtf/tests/testdata/simple-model";
    
    TEST_P(RuntimeTest, SimpleModelCallableFloatTest) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 09 12:27:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/reader_test.cc

            "tensorflow/serving/predict");
      }
    };
    
    TEST_F(ReaderTest, TagMatch) {
      MetaGraphDef meta_graph_def;
    
      const string export_dir = GetDataDependencyFilepath(TestDataSharded());
      TF_ASSERT_OK(ReadMetaGraphDefFromSavedModel(export_dir, {kSavedModelTagServe},
                                                  &meta_graph_def));
      CheckMetaGraphDef(meta_graph_def);
    }
    
    TEST_F(ReaderTest, NoTagMatch) {
      MetaGraphDef meta_graph_def;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_skip.txt

    go test -v -run Test -skip T skip_test.go
    ! stdout RUN
    stdout '^ok.*\[no tests to run\]'
    
    go test -v -skip T skip_test.go
    ! stdout RUN
    
    go test -v -skip 1 skip_test.go
    ! stdout Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    
    go test -v -skip 2/3 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*ExampleTest1
    ! stdout Test2/3
    
    go test -v -skip 2/4 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 17:40:22 UTC 2023
    - 755 bytes
    - Viewed (0)
  7. tensorflow/cc/ops/while_loop_test.cc

          "100");
    }
    
    TEST_F(WhileLoopTest, UnsetCondOutput) {
      Init(1);
      CreateLoop([](const Scope& s, const std::vector<Output>& inputs,
                    Output* output) { return s.status(); },
                 AddOneBody, error::INVALID_ARGUMENT, "Node is null");
    }
    
    // TODO(skyewm): test bad body output type
    // TODO(skyewm): test bad body output shape
    
    TEST_F(WhileLoopTest, NullBodyOutputNode) {
      Init(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

        ASSERT_TRUE(errors::IsInvalidArgument(s));
      }
    };
    
    // Test for resource leaks related to TensorFlow session closing requirements
    // when loading and unloading large numbers of SavedModelBundles.
    // TODO(sukritiramesh): Increase run iterations and move outside of the test
    // suite.
    TEST_F(LoaderTest, ResourceLeakTest) {
      SavedModelBundleLite bundle;
      SessionOptions session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

      std::unique_ptr<mlir::Builder> builder_;
    };
    
    TEST_F(PerceptionUtilsTest, VerifySignatureValid) {
      mlir::TFL::ConvertMaxUnpoolingFunc convert(fused_max_unpooling_func_,
                                                 func_attr_);
    
      EXPECT_FALSE(failed(convert.VerifySignature()));
    }
    
    TEST_F(PerceptionUtilsTest, VerifySignatureInvalid) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import_test.cc

    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::testing::IsEmpty;
    using ::testing::Pair;
    using ::testing::UnorderedElementsAre;
    
    using UpdateFunctionAliasesTest = ::mlir::quant::QuantizationTestBase;
    
    TEST_F(UpdateFunctionAliasesTest, NoAliasesReturnsEmptyMap) {
      // MLIR @main function corresponds to the TF function "main_original".
      OwningOpRef<ModuleOp> module_op = ParseModuleOpString(R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top