Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for broken2 (0.24 sec)

  1. tests/integration/ambient/baseline_test.go

    			!dst.Config().HasSidecar() {
    			// Check original source, unless there is a waypoint in the path. For waypoint, we don't (yet?) propagate original src.
    			// Self call is also (temporarily) broken
    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    embedding lookup on the SparseCore, followed by one or more dense layers on
    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    These 4 functions are then staggered so as to enable parallel execution.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/testing/testing.go

    			if testingTesting && *match != "^$" {
    				// If this happens during testing of package testing it could be that
    				// package testing's own logic for when to run a test is broken,
    				// in which case every test will run nothing and succeed,
    				// with no obvious way to detect this problem (since no tests are running).
    				// So make 'no tests to run' a hard failure when testing package testing itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/net/http/request.go

    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    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. src/text/template/exec_test.go

    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    	// Pipelined arg was not being type-checked.
    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    file indicating that the toolchain was fully provisioned**. This could lead to strange behavior with the toolchain. In Gradle 8.9, the toolchain is now fully provisioned before the marker file is written. However, in order to not detect potentially broken toolchains, a different marker file (`.ready`) is used. This means that all of your existing toolchains will be re-provisioned the first time you use them with Gradle 8.9. Gradle 8.9 also writes the old marker file (`provisioned.ok`) to indicate that...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			if err != nil {
    				// We look at error strings as the
    				// expected errors are OS-specific.
    				switch {
    				case errors.Is(err, ErrClosed),
    					strings.Contains(err.Error(), "broken pipe"),
    					strings.Contains(err.Error(), "pipe is being closed"),
    					strings.Contains(err.Error(), "hungup channel"):
    					// Ignore an expected error.
    				default:
    					// Unexpected error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top