Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 129 for testF (0.06 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // This header implements typed tests and type-parameterized tests.
    
    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            project.file("src/main/application/META-INF/test.txt").createNewFile()
            project.file("src/main/application/test2.txt").createNewFile()
    
            when:
            project.pluginManager.apply(EarPlugin)
    
            and:
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    
            then:
            inEar "test2.txt"
            inEar "META-INF/test.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. pkg/securitycontext/accessors_test.go

    		// Capabilities
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewContainerSecurityContextMutator(tc.newSC())
    			modifiedSC.Capabilities = &api.Capabilities{Drop: []api.Capability{"test2"}}
    			m.SetCapabilities(&api.Capabilities{Drop: []api.Capability{"test2"}})
    			if !reflect.DeepEqual(m.ContainerSecurityContext(), modifiedSC) {
    				t.Errorf("%s: unexpected object:\n%s", k, diff.ObjectGoPrintSideBySide(modifiedSC, m.ContainerSecurityContext()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    		}
    		found.Insert(ip.String())
    	}
    	if count != 14 {
    		t.Fatalf("expected 14 IPs got %d", count)
    	}
    	if _, err := r.AllocateNext(); err == nil {
    		t.Fatal(err)
    	}
    
    	cidr2 := newServiceCIDR("test2", "10.0.0.0/28")
    	_, err = r.client.ServiceCIDRs().Create(context.Background(), cidr2, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	r.addServiceCIDR(cidr2)
    	// wait for the cidr to be processed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-resource-alias-analysis -verify-diagnostics %s | FileCheck %s
    
    // Test 2 resources that do not alias.
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @non_aliasing_reads_writes
    // expected-remark@below {{Region #0, Arg #0, ID 1 : 1}}
    // expected-remark@below {{Region #0, Arg #1, ID 2 : 2}}
    func.func @non_aliasing_reads_writes(
      %arg0: !tf_res,
      %arg1: !tf_res,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. src/net/mail/message_test.go

    		{Name: "naé, mée", Address: "test******@****.***"},
    	}
    
    	for i, test := range tests {
    		parsed, err := ParseAddress(test.String())
    		if err != nil {
    			t.Errorf("test #%d: ParseAddr(%q) error: %v", i, test.String(), err)
    			continue
    		}
    		if parsed.Name != test.Name {
    			t.Errorf("test #%d: Parsed name = %q; want %q", i, parsed.Name, test.Name)
    		}
    		if parsed.Address != test.Address {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    Jason van Zyl <******@****.***> 1092078151 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    #Others
    / http://www.example.com/test s:http h:www.example.com p:/
    /test.txt  s:http h:www.example.com p:/test.txt
    .  s:http h:www.example.com p:/
    ..  s:http h:www.example.com p:/
    test.txt  s:http h:www.example.com p:/test.txt
    ./test.txt  s:http h:www.example.com p:/test.txt
    ../test.txt  s:http h:www.example.com p:/test.txt
    ../aaa/test.txt  s:http h:www.example.com p:/aaa/test.txt
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-configurations.png

    cpp-unit-test-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top