Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 243 for hand (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def ConvertToLegacyCompileAndReplicateAttributesPass : Pass<"tf-convert-to-legacy-compile-and-replicate-attributes", "mlir::func::FuncOp"> {
      let summary = "Convert unified compilation and replication attributes back to legacy attributes.";
    
      let description = [{
        This transformation pass converts unified compilation and replication
        attributes (`_replication_info` and `_xla_compile_device_type`) into legacy
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		// like runtime, sync, and reflect.
    		// Note that $GOROOT/src/buildall.bash
    		// does the same
    		// and should be updated if these flags are
    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Implements generalized Tensor contraction and reduction. Each input Tensor must
    have a corresponding input subscript appearing in the comma-separated left-hand
    side of the equation. The right-hand side of the equation consists of the
    output subscript. The input subscripts and the output subscript should consist
    of zero or more named axis labels and at most one ellipsis (`...`).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

        def "disconnect during hanging build does not block the client"() {
            setup:
            file("gradle.properties") << "systemProp.org.gradle.internal.testing.daemon.hang=60000"
            buildFile.text = """
                task hang {
                    doLast {
                        ${server.callFromBuild("waiting")}
                    }
                }
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			workloadAgnostic: true,
    		})
    	}
    
    	autoPort := ports.AutoHTTP
    	httpPort := ports.HTTP
    	// Tests for http1.0. Golang does not support 1.0 client requests at all
    	// To simulate these, we use TCP and hand-craft the requests.
    	t.RunTraffic(TrafficTestCase{
    		name: "http10 to http",
    		call: t.Apps.A[0].CallOrFail,
    		opts: echo.CallOptions{
    			To:    t.Apps.B,
    			Count: 1,
    			Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        `test.example.com` and `*.example.com` would both match. On the other
                        hand, `example.com` and `test.example.net` would not match.
    
    
                      Hostnames that are prefixed with a wildcard label (`*.`) are interpreted
                      as a suffix match. That means that a match for `*.example.com` would match
                      both `test.example.com`, and `foo.test.example.com`, but not `example.com`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  7. src/time/internal_test.go

    	// If this test fails, we will either throw (when siftdownTimer detects
    	// bad when on update), or other timers will hang (if the timer in a
    	// heap is in a bad state). There is no reliable way to test this, but
    	// we wait on a short timer here as a smoke test (alternatively, timers
    	// in later tests may hang).
    	<-After(25 * Millisecond)
    }
    
    var (
    	MinMonoTime = Time{wall: 1 << 63, ext: -1 << 63, loc: UTC}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      hard:
        hardKey: "0"
      scopeSelector:
        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    }
    
    // PrepareForCoverageBuild is a helper invoked for "go install
    // -cover", "go run -cover", and "go build -cover" (but not used by
    // "go test -cover"). It walks through the packages being built (and
    // dependencies) and marks them for coverage instrumentation when
    // appropriate, and possibly adding additional deps where needed.
    func PrepareForCoverageBuild(pkgs []*Package) {
    	var match []func(*Package) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              TimeoutsToUse.FINITE,
              isBoolean(method) ? Outcome.FAILURE : Outcome.HANG);
          addTests(
              suite,
              method,
              Scenario.SATISFIED_AND_OCCUPIED_BEFORE_ENTERING,
              TimeoutsToUse.INFINITE,
              isGuarded(method) ? Outcome.HANG : (isTryEnter(method) ? Outcome.FAILURE : Outcome.HANG));
          addTests(
              suite,
              method,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top