Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for hand (0.59 sec)

  1. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * is also performed for calls to {@link Object#equals}, {@link Object#hashCode}, and {@link
       * Object#toString}.
       *
       * <p>If the target method call finishes before the limit is reached, the return value or
       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
       * reached, the proxy will attempt to abort the call to the target, and will throw an {@link
       * UncheckedTimeoutException} to the caller.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. 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)
  3. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f2...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K 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. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskContainer.java

         *
         * @param name The name of the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/pack/pack_test.go

    	testCreate(t, dir)
    }
    
    // Test that we can create an archive, put some files in it, and get back a correct listing.
    // Tests the tv command.
    func TestTableOfContents(t *testing.T) {
    	dir := t.TempDir()
    	name := filepath.Join(dir, "pack.a")
    	ar := openArchive(name, os.O_RDWR|os.O_CREATE, nil)
    
    	// Add some entries by hand.
    	ar.addFile(helloFile.Reset())
    	ar.addFile(goodbyeFile.Reset())
    	ar.a.File().Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/syscall/mkall.sh

    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    # * zerror_${GOOS}_${GOARCH}.go
    #
    # This machine-generated file defines the system's error numbers,
    # error strings, and signal numbers.  The generator is "mkerrors.sh".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top