Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 983 for hand (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    			aHand = dealer.DealIntoHand(uint64(i), aHand)
    			sort.IntSlice(aHand).Sort()
    			handCoordinate := 0
    			for _, card := range aHand {
    				handCoordinate = handCoordinate<<7 + card
    			}
    			handCoordinateMap[handCoordinate]++
    		}
    		numHandsSeen := len(handCoordinateMap)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    	}
    }
    
    // DealIntoHand shuffles and deals according to the Dealer's parameters,
    // using the given hashValue as the source of entropy and then
    // returns the dealt cards as a slice of `int`.
    // If `hand` has the correct length as Dealer's handSize, it will be used as-is and no allocations will be made.
    // If `hand` is nil or too small, it will be extended (performing an allocation).
    // If `hand` is too large, a sub-slice will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue14010.go

    // Verify that built-in types don't get printed with
    // (empty) package qualification.
    
    package main
    
    func main() {
    	true = false // ERROR "cannot assign to true|invalid left hand side"
    	byte = 0     // ERROR "not an expression|invalid left hand side|invalid use of type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 449 bytes
    - Viewed (0)
  4. android/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
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/README

    two files ".info" and ".mod", to be served as the info and mod files
    in the proxy protocol (see https://research.swtch.com/vgo-module).
    The remaining files are served as the content of the module zip file.
    The path@vers prefix required of files in the zip file is added
    automatically by the proxy: the files in the archive have names without
    the prefix, like plain "go.mod", "x.go", and so on.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/mod/rsc.io_panicnil_v1.0.0.txt

    rsc.io/panicnil v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/panicnil
    -- .info --
    {"Version":"v1.0.0"}
    -- fortune.go --
    package main
    
    func main() {
    	panic(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:55:13 UTC 2023
    - 166 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_join_subpkg_v1.0.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join/subpkg
    -- .info --
    {"Version": "v1.0.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 170 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.22.1.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.22.1.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.22.1.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.22.9.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.22.9.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.22.9.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
Back to top