Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for svctest (0.14 sec)

  1. src/runtime/mgcscavenge_test.go

    	//
    	// setup creates a fake scavengeIndex that can be mutated and queried by
    	// the functions it returns. Those functions capture the testing.T that
    	// setup is called with, so they're bound to the subtest they're created in.
    	//
    	// Tests are then organized into test cases which mark some pages as
    	// scavenge-able then try to find them. Tests expect that the initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. tests/integration/README.md

                            ctx.ApplyConfigOrFail(ctx, nil, mycfg)
                            // Do more stuff here.
                        })
                }
            })
    }
    ```
    
    Under the hood, calling `subtest.Run()` delegates to `t.Run()` in order to create a child `testing.T`.
    
    ### Parallel Tests
    
    Many tests can take a while to start up for a variety of reasons, such as waiting for pods to start or waiting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/BUILD

    # # whether the latter is stale.
    # dialectgen(
    #     name = "tf-generated-ops",
    #     output = "new_tf_generated_ops.td",
    # )
    #
    # sh_test(
    #     name = "tf_generated_ops_not_stale",
    #     srcs = ["ir/tf_generated_ops_not_stale.sh"],
    #     args = [
    #         "$(location //tensorflow/compiler/mlir/tensorflow:ir/tf_generated_ops.td)",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/ptr_test.go

    			t.Fatal(err)
    		}
    		dir = d
    		gopath = d
    	}
    
    	exe := buildPtrTests(t, gopath, false)
    	exe2 := buildPtrTests(t, gopath, true)
    
    	// We (TestPointerChecks) return before the parallel subtest functions do,
    	// so we can't just defer os.RemoveAll(dir). Instead we have to wait for
    	// the parallel subtests to finish. This code looks racy but is not:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top