Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for runUse (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	f.NoCallbacks = make(map[string]bool)
    	f.NoEscapes = make(map[string]bool)
    	for _, line := range linesIn {
    		l := strings.TrimSpace(line)
    		if len(l) < 5 || l[:4] != "#cgo" || !unicode.IsSpace(rune(l[4])) {
    			linesOut = append(linesOut, line)
    		} else {
    			linesOut = append(linesOut, "")
    
    			// #cgo (nocallback|noescape) <function name>
    			if fields := strings.Fields(l); len(fields) == 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	makeBucketOptions MakeBucketOptions
    }
    
    // ExecObjectLayerAPITest - executes object layer API tests.
    // Creates single node and Erasure ObjectLayer instance, registers the specified API end points and runs test for both the layers.
    func ExecObjectLayerAPITest(args ExecObjectLayerAPITestArgs) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// reset globals.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	if err != nil {
    		klog.ErrorS(err, "Failed to create a new kubelet configuration")
    		os.Exit(1)
    	}
    
    	cmd := &cobra.Command{
    		Use: componentKubelet,
    		Long: `The kubelet is the primary "node agent" that runs on each
    node. It can register the node with the apiserver using one of: the hostname; a flag to
    override the hostname; or specific logic for a cloud provider.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			describeNamespace = ctx.NamespaceOrDefault(ctx.Namespace())
    			if len(args) != 1 {
    				return fmt.Errorf("expecting pod name")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

        ],
    )
    
    tf_cuda_cc_test(
        name = "pjrt_compile_util_test",
        srcs = ["pjrt_compile_util_test.cc"],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":pjrt_compile_util",
            ":test_util",
            ":xla_gpu_jit",
            "//tensorflow/cc:function_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_basics]]
    == The basics
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            result.groupedOutput.task(":consumer:resolve")
                .assertOutputContains("result = [producer.jar.green, nested-producer.jar.green]")
    
            // Included build runs a single task and no transforms
            def includedPlannedNodes = getPlannedNodes(0, ":included")
            includedPlannedNodes.size() == 1
    
            def plannedNodes = getPlannedNodes(2, ":")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            _ * provider3.size() >> 2
            1 * provider3.calculateValue(_) >> ValueSupplier.Value.of([b, d])
            1 * action.execute(b)
            1 * action.execute(d)
            0 * _
        }
    
        def "runs configure element action immediately when element already realized"() {
            containerAllowsExternalProviders()
            def action = Mock(Action)
            def provider = Mock(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top