Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 377 for test_1 (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

            def notRequired = mavenRepo.module('test', 'dont-include-me', '1.0')
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
            def m5 = mavenRepo.module('test', 'test5', '1.0')
                .dependsOn(m1, scope: 'compile')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

    using ::tsl::testing::IsOk;
    
    using QuantizationReportTest = ::mlir::quant::QuantizationTestBase;
    
    TEST_F(QuantizationReportTest, GetQuantizationResultsReturnsEmptyResults) {
      QuantizationReport report{};
    
      const QuantizationResults& results = report.GetQuantizationResults();
      ASSERT_THAT(results.results(), IsEmpty());
    }
    
    TEST_F(QuantizationReportTest, AddQuantizationResult) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

      EXPECT_EQ(histogram.num(), 1);
      EXPECT_EQ(compilation_status.Delta("kOldBridgeNoMlirSuccess"), 1);
    }
    
    TEST_F(CompileTFGraphTest, SuccessfullyCompilesWithManualSharding) {
      // MLIR module from failing test.
      constexpr char kSupportedManualSharding[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/controller/daemon/util/daemonset_util_test.go

    			hash,
    			false,
    		},
    	}
    	for _, test := range tests {
    		updated := IsPodUpdated(test.pod, test.hash, test.templateGeneration)
    		if updated != test.isUpdated {
    			t.Errorf("%s: IsPodUpdated returned wrong value. Expected %t, got %t", test.test, test.isUpdated, updated)
    		}
    	}
    }
    
    func TestCreatePodTemplate(t *testing.T) {
    	tests := []struct {
    		templateGeneration *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

            outputContains("external-dependencies: [test1-1.0.jar]")
            outputContains("child1-dependencies: [child1.jar, child1-lib.jar, test2-1.0.jar]")
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "can query files for filtered first level dependencies when there is a cycle in the dependency graph"() {
            mavenRepo.module("group", "test1", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/legalize_tf_quant_test.cc

    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tsl/lib/core/status_test_util.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::testing::Test;
    
    class LegalizeTFQuantTest : public Test {
     protected:
      void TestBridgeLowering(llvm::StringRef mlir_module_string,
                              llvm::ArrayRef<tensorflow::TensorShape> arg_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 18:43:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        public void run(RunNotifier runNotifier) {
            // Run tests in 'parallel'
            Description test1 = Description.createTestDescription(type, 'broken')
            Description test2 = Description.createTestDescription(type, 'ok')
            runNotifier.fireTestStarted(test1)
            runNotifier.fireTestStarted(test2)
            runNotifier.fireTestFailure(new Failure(test1, failure.rawFailure))
            runNotifier.fireTestFinished(test2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

      EXPECT_THAT(saver_def->save_tensor_name(), "tf_quant__save_op_0:0");
    }
    
    TEST(CreateSaverDefTest, ReturnsNulloptIfNoSaverDefRelatedNodesExist) {
      TF_ASSERT_OK_AND_ASSIGN(
          const std::optional<SaverDef> saver_def,
          CreateSaverDef(/*control_ret_node_names=*/{}, GraphDef()));
      EXPECT_EQ(saver_def, std::nullopt);
    }
    
    TEST(CreateSaverDefTest, ReturnsErrorStatusIfSaverDefNodesPartiallyExist) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx_test.cc

      EXPECT_TRUE(status.ok());
      auto decomposed = test_ctx_->ExpandNode(test_node, "test");
      EXPECT_TRUE(decomposed.ok());
      std::vector<NodeAndType> expected_results{{"Identity", DT_FLOAT}};
      EXPECT_THAT(NodesSequenceOf(decomposed.value()),
                  ElementsAreArray(expected_results));
    }
    
    TEST_F(TFRDecomposeContextTest, FLOAT_3_ins) {
      std::vector<NodeDefBuilder::NodeOut> src_list;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

        return run_result;
      }
    
     private:
      mlir::MLIRContext context_;
      mlir::OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    TEST_F(InputLoweringMetricsPassTest, CountsNoDynamicOps) {
      static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top