Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for hand (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ArtifactResolutionExpectationSpec.groovy

            withModuleMetadata(expectation)
            withoutModuleMetadata(expectation)
        }
    
        /**
         * Short-hand notation for expecting a list of files independently of the fact module metadata is used or not
         * @param fileNames
         */
        void expectFiles(String... fileNames) {
            always {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/go/types/66559.md

    The [Alias] type now has an [Rhs] method that returns the type on the
    right-hand side of its declaration: given `type A = B`, the `Rhs` of A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 172 bytes
    - Viewed (0)
  3. src/internal/types/errors/codes.go

    	//  	x := 1
    	//  	x := 2
    	//  }
    	NoNewVar
    
    	// MultiValAssignOp occurs when an assignment operation (+=, *=, etc) does
    	// not have single-valued left-hand or right-hand side.
    	//
    	// Per the spec:
    	//  "In assignment operations, both the left- and right-hand expression lists
    	//  must contain exactly one single-valued expression"
    	//
    	// Example:
    	//  func f() int {
    	//  	x, y := 1, 2
    	//  	x, y += 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  	x := 1
    	//  	x := 2
    	//  }
    	NoNewVar
    
    	// MultiValAssignOp occurs when an assignment operation (+=, *=, etc) does
    	// not have single-valued left-hand or right-hand side.
    	//
    	// Per the spec:
    	//  "In assignment operations, both the left- and right-hand expression lists
    	//  must contain exactly one single-valued expression"
    	//
    	// Example:
    	//  func f() int {
    	//  	x, y := 1, 2
    	//  	x, y += 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. src/crypto/tls/quic.go

    	// Set for QUICSetReadSecret, QUICSetWriteSecret, and QUICWriteData.
    	Level QUICEncryptionLevel
    
    	// Set for QUICTransportParameters, QUICSetReadSecret, QUICSetWriteSecret, and QUICWriteData.
    	// The contents are owned by crypto/tls, and are valid until the next NextEvent call.
    	Data []byte
    
    	// Set for QUICSetReadSecret and QUICSetWriteSecret.
    	Suite uint16
    
    	// Set for QUICResumeSession and QUICStoreSession.
    	SessionState *SessionState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

      return rewriter.create<TransposeOp>(
          input.getLoc(), input, rewriter.getDenseI64ArrayAttr(permutation));
    }
    
    // Defers the transpose of the left-hand side (LHS) to the right-hand side and
    // the result of a binary operation. In detail, this rewrites the
    // `op(transpose(%rhs), %lhs)` to `transpose(op(%rhs, transpose(%lhs)))`. The
    // LHS transpose permutation must be a NCHW->NHWC permutation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
     * an interceptor and listener which cleans up the test directory only when the test passes.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  Deserialization, on the other hand, is performed by a {@link org.gradle.internal.serialize.graph.DecodingProvider}.
     *  </p>
     *  <p>Both protocols are highly specialized and, as such, they are specified as Single Abstract Method interfaces.</p>
     *
     *  <h3>Codecs</h3>
     *  <p>A {@link org.gradle.internal.serialize.graph.Codec Codec} is an object that is both an <code>EncodingProvider</code> and a <code>DecodingProvider</code>.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

     * ```
     * fun test(l: List<String>) {
     *   l.get(1) // The symbol `get` has type `(Int) -> T` where is the type parameter declared in `List`.
     *            // On the other hand, a `KaCallableSignature` carries instantiated type information `(Int) -> String`.
     * }
     * ```
     *
     * Equality of [KaCallableSignature] is derived from its content.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      if (!matmul_op) return failure();
    
      // Gets the broadcasted output shape for tf.BatchMatMulV2Op. `shape_x` is the
      // shape of op's first/left-hand-side operand and `shape_y` is the shape of
      // op's second/right-hand-side operand.
      const auto get_broadcasted_shape =
          [&](ArrayRef<int64_t> shape_x, ArrayRef<int64_t> shape_y,
              SmallVectorImpl<int64_t>& result_shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top