Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for test_pvc (0.2 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                "/a/path/to/a/file");
    }
    
    TEST_P(ModularFileSystemTest, TestCreateFile) {
      const std::string filepath = GetURIForPath("a_file");
      std::unique_ptr<WritableFile> new_file;
      Status status = env_->NewWritableFile(filepath, &new_file);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestCreateFileNonExisting) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      }
      TensorType tensor_type_;
    };
    
    INSTANTIATE_TEST_SUITE_P(QuantizeConvModelTestInst, QuantizeConvModelTest,
                             testing::ValuesIn({TensorType_INT8}));
    
    TEST_P(QuantizeConvModelTest, QuantizationSucceeds) {
      auto status = QuantizeModelAllOperators(&model_, tensor_type_, tensor_type_,
                                              /*allow_float=*/false, tensor_type_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      // You can implement all the usual class fixture members here.
    };
    
    // Then, use the TEST_P macro to define as many parameterized tests
    // for this fixture as you want. The _P suffix is for "parameterized"
    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      // You can implement all the usual class fixture members here.
    };
    
    // Then, use the TEST_P macro to define as many parameterized tests
    // for this fixture as you want. The _P suffix is for "parameterized"
    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    				buildService("test.com", tt.CIDR, protocol.TCP, tnow),
    			}
    
    			virtualService := config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "test_vs",
    					Namespace:        "default",
    				},
    				Spec: virtualServiceSpec,
    			}
    			for _, p := range []*model.Proxy{getProxy(), &dualStackProxy} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    }
    
    func TestEmptyVIPsExcluded(t *testing.T) {
    	testSVC := corev1.Service{
    		Spec: corev1.ServiceSpec{
    			ClusterIP: "",
    		},
    		Status: corev1.ServiceStatus{
    			LoadBalancer: corev1.LoadBalancerStatus{
    				Ingress: []corev1.LoadBalancerIngress{
    					{
    						IP: "",
    					},
    				},
    			},
    		},
    	}
    	vips := getVIPs(&testSVC)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     // Can use GetParam() here.
    //   }
    //   virtual void SetUp() {
    //     // Can use GetParam() here.
    //   }
    //   virtual void TearDown {
    //     // Can use GetParam() here.
    //   }
    // };
    // TEST_P(FooTest, DoesBar) {
    //   // Can use GetParam() method here.
    //   Foo foo;
    //   ASSERT_TRUE(foo.DoesBar(GetParam()));
    // }
    // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     // Can use GetParam() here.
    //   }
    //   virtual void SetUp() {
    //     // Can use GetParam() here.
    //   }
    //   virtual void TearDown {
    //     // Can use GetParam() here.
    //   }
    // };
    // TEST_P(FooTest, DoesBar) {
    //   // Can use GetParam() method here.
    //   Foo foo;
    //   ASSERT_TRUE(foo.DoesBar(GetParam()));
    // }
    // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top