Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for hand (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // SockaddrVM provides access to Linux VM sockets: a mechanism that enables
    // bidirectional communication between a hypervisor and its guest virtual
    // machines.
    type SockaddrVM struct {
    	// CID and Port specify a context ID and port address for a VM socket.
    	// Guests have a unique CID, and hosts may have a well-known CID of:
    	//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

    EVICTION_PRESSURE_TRANSITION_PERIOD=${EVICTION_PRESSURE_TRANSITION_PERIOD:-"1m"}
    
    # This script uses docker0 (or whatever container bridge docker is currently using)
    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    # Note also that you need API_HOST (defined below) for correct DNS.
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // pkg locates the *loadPkg for path, creating and queuing it for loading if
    // needed, and updates its state to reflect the given flags.
    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    // ld.work queue, and its test (if requested) will also be populated once
    // imports have been resolved. When ld.work goes idle, all transitive imports of
    // the requested package (and its test, if requested) will have been loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen + 1, the span was cached before sweep began and is still cached, and needs sweeping
    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    	divMul                uint32        // for divide by elemsize
    	allocCount            uint16        // number of allocated objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            and:
            result == "value"
    
            when:
            def result2 = property.get()
    
            then:
            0 * _
    
            and:
            result2 == [k1: "value"]
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. src/time/format.go

    // that insist on that format, and [RFC3339] should be preferred for new protocols.
    // [RFC3339], [RFC822], [RFC822Z], [RFC1123], and [RFC1123Z] are useful for formatting;
    // when used with time.Parse they do not accept all the time formats
    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

      // 'inputFuture'. That field is non-final and non-volatile. There are 2 places where the
      // 'inputFuture' field is read and where we will have to consider visibility of the write
      // operation in the constructor.
      //
      // 1. In the listener that performs the callback. In this case it is fine since inputFuture is
      //    assigned prior to calling addListener, and addListener happens-before any invocation of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    // on the GOOS and GOARCH, and (at least for now) those are modified in place
    // to switch between the host and target configurations when cross-compiling.
    func toolenv() []string {
    	var env []string
    	if !mustLinkExternal(goos, goarch, false) {
    		// Unless the platform requires external linking,
    		// we disable cgo to get static binaries for cmd/go and cmd/pprof,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"%v", islice, "[1 hello 2.5 <nil>]"},
    	{"%v", bslice, "[1 2 3 4 5]"},
    	{"%v", &slice, "&[1 2 3 4 5]"},
    	{"%v", &islice, "&[1 hello 2.5 <nil>]"},
    	{"%v", &bslice, "&[1 2 3 4 5]"},
    
    	// byte arrays and slices with %b,%c,%d,%o,%U and %v
    	{"%b", [3]byte{65, 66, 67}, "[1000001 1000010 1000011]"},
    	{"%c", [3]byte{65, 66, 67}, "[A B C]"},
    	{"%d", [3]byte{65, 66, 67}, "[65 66 67]"},
    	{"%o", [3]byte{65, 66, 67}, "[101 102 103]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    			// size too large or we don't have good layout information
    			size = 0
    		}
    
    		// If the previous line and the current line had single-
    		// line-expressions and the key sizes are small or the
    		// ratio between the current key and the geometric mean
    		// if the previous key sizes does not exceed a threshold,
    		// align columns and do not use formfeed.
    		if prevSize > 0 && size > 0 {
    			const smallSize = 40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top