Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 89 for Pat (0.07 sec)

  1. src/go/doc/testdata/benchmark.go

    		}
    	}
    	return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
    }
    
    // An internal function but exported because it is cross-package; part of the implementation
    // of go test.
    func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
    	// If no flag was specified, don't run benchmarks.
    	if len(*matchBenchmarks) == 0 {
    		return
    	}
    	for _, Benchmark := range benchmarks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	if err := mux.index.possiblyConflictingPatterns(pat, func(pat2 *pattern) error {
    		if pat.conflictsWith(pat2) {
    			d := describeConflict(pat, pat2)
    			return fmt.Errorf("pattern %q (registered at %s) conflicts with pattern %q (registered at %s):\n%s",
    				pat, pat.loc, pat2, pat2.loc, d)
    		}
    		return nil
    	}); err != nil {
    		return err
    	}
    	mux.tree.addPattern(pat, handler)
    	mux.index.addPattern(pat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    // it is part of the implementation of the "go test" command.
    func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
    	runBenchmarks("", matchString, benchmarks)
    }
    
    func runBenchmarks(importPath string, matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) bool {
    	// If no flag was specified, don't run benchmarks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// and mutating the contexts held by callers of the same request.
    	ctx context.Context
    
    	// The following fields are for requests matched by ServeMux.
    	pat         *pattern          // the pattern that matched
    	matches     []string          // values for the matching wildcards in pat
    	otherValues map[string]string // for calls to SetPathValue that don't match a wildcard
    }
    
    // Context returns the request's context. To change the context, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     * Other contributors include Andrew Wright, Jeffrey Hayes,
     * Pat Fisher, Mike Judd.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.truth.Truth.assertThat;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     * Other contributors include Andrew Wright, Jeffrey Hayes,
     * Pat Fisher, Mike Judd.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.truth.Truth.assertThat;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. src/os/os_test.go

    		t.Fatalf("Chtimes %s: %s", name, err)
    	}
    
    	st, err = Stat(name)
    	if err != nil {
    		t.Fatalf("second Stat %s: %s", name, err)
    	}
    	postStat := st
    
    	pat := Atime(postStat)
    	pmt := postStat.ModTime()
    	if !pat.Before(at) {
    		switch runtime.GOOS {
    		case "plan9":
    			// Mtime is the time of the last change of
    			// content.  Similarly, atime is set whenever
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
      //        (Slice $input, [0, 0, ...], (Concat (ExpandDims $index, expand_dim =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     * Other contributors include Andrew Wright, Jeffrey Hayes,
     * Pat Fisher, Mike Judd.
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck/JSR166TestCase.java?revision=1.90
     * (We have made some trivial local modifications (commented out
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     * Other contributors include Andrew Wright, Jeffrey Hayes,
     * Pat Fisher, Mike Judd.
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck/JSR166TestCase.java?revision=1.90
     * (We have made some trivial local modifications (commented out
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top