Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for svctest (0.12 sec)

  1. CONTRIBUTING.md

        ```
    
        See
        [TensorFlow Builds](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/ci_build)
        for details.
    
    #### Running doctest for testable docstring
    
    There are two ways to test the code in the docstring locally:
    
    1.  If you are only changing the docstring of a class/function/method, then you
        can test it by passing that file's path to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/go/go_test.go

    			vcs.VCSTestHosts = vcstest.Hosts
    			vcsTestTLSHost := os.Getenv("TESTGO_VCSTEST_TLS_HOST")
    			vcsTestClient, err := vcstest.TLSClient(os.Getenv("TESTGO_VCSTEST_CERT"))
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "loading certificates from $TESTGO_VCSTEST_CERT: %v", err)
    			}
    			var interceptors []web.Interceptor
    			for _, host := range vcstest.Hosts {
    				interceptors = append(interceptors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/model/push_context.go

    	}
    	log.Debugf("GatewayServices: gateway %v is exposing these hosts:%v", proxy.ID, hostsFromGateways)
    
    	gwSvcs := make([]*Service, 0, len(svcs))
    
    	for _, s := range svcs {
    		svcHost := string(s.Hostname)
    
    		if _, ok := hostsFromGateways[svcHost]; ok {
    			gwSvcs = append(gwSvcs, s)
    		}
    	}
    
    	log.Debugf("GatewayServices: gateways len(services)=%d, len(filtered)=%d", len(svcs), len(gwSvcs))
    
    	return gwSvcs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    // Each .go file test case in GOROOT/test is registered as a subtest with a
    // a full name like "Test/fixedbugs/bug000.go" ('/'-separated relative path).
    func Test(t *testing.T) {
    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		ctx, cancel := context.WithCancel(ctx)
    		defer cancel()
    
    		ch := make(chan int)
    		defer close(ch)
    
    		var ready sync.WaitGroup
    
    		// These goroutines all survive until the end of the subtest, so we can
    		// check that a (numbered) goroutine appearing in the profile implies
    		// that all older goroutines also appear in the profile.
    		ready.Add(1)
    		done.Add(1)
    		go func() {
    			defer done.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	-list regexp
    	    List tests, benchmarks, fuzz tests, or examples matching the regular
    	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    	    This will only list top-level tests. No subtest or subbenchmarks will be
    	    shown.
    
    	-parallel n
    	    Allow parallel execution of test functions that call t.Parallel, and
    	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    //	-list regexp
    //	    List tests, benchmarks, fuzz tests, or examples matching the regular
    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    //	    Allow parallel execution of test functions that call t.Parallel, and
    //	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top