Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for receipt (1.05 sec)

  1. src/crypto/tls/quic_test.go

    	}
    	cliSecret := cli2.writeSecret[QUICEncryptionLevelEarly]
    	if cliSecret.secret == nil {
    		t.Errorf("client did not receive early data write secret")
    	}
    	srvSecret := srv2.readSecret[QUICEncryptionLevelEarly]
    	if srvSecret.secret == nil {
    		t.Errorf("server did not receive early data read secret")
    	}
    	if cliSecret.suite != srvSecret.suite || !bytes.Equal(cliSecret.secret, srvSecret.secret) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    	// startRunning is the most recent event that caused a goroutine to
    	// transition to GoRunning.
    	startRunningTime trace.Time
    
    	// startSyscall is the most recent event that caused a goroutine to
    	// transition to GoSyscall.
    	syscall struct {
    		time   trace.Time
    		stack  trace.Stack
    		active bool
    	}
    
    	// startBlockReason is the StateTransition.Reason of the most recent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/1-time.md

    A visible effect of this change is that `len` and `cap` of timer channels
    now returns 0 instead of 1, which may affect programs that
    poll the length to decide whether a receive on the timer channel
    will succeed.
    Such code should use a non-blocking receive instead.
    
    These new behaviors are only enabled when the main Go program
    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </pre>
    
    
    <h3 id="Receive_operator">Receive operator</h3>
    
    <p>
    For an operand <code>ch</code> whose <a href="#Core_types">core type</a> is a
    <a href="#Channel_types">channel</a>,
    the value of the receive operation <code>&lt;-ch</code> is the value received
    from the channel <code>ch</code>. The channel direction must permit receive operations,
    and the type of the receive operation is the element type of the channel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    				// The "std" module in GOROOT/src is the Go standard library. Unlike other
    				// modules, the packages in the "std" module have no import-path prefix.
    				//
    				// Modules named "std" outside of GOROOT/src do not receive this special
    				// treatment, so it is possible to run 'go test .' in other GOROOTs to
    				// test individual packages using a combination of the modified package
    				// and the ordinary standard library.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    	// message during the most recent handshake. This is recorded because
    	// the first transmitted Finished message is the tls-unique
    	// channel-binding value.
    	clientFinishedIsFirst bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		// to hash the entirety of their content. Instead assume
    		// the mtime and size recorded in hashWriteStat above
    		// are good enough.
    		//
    		// To avoid problems for very recent files where a new
    		// write might not change the mtime due to file system
    		// mtime precision, reject caching if a file was read that
    		// is less than modTimeCutoff old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    			var version uint32
    			switch ctxt.Arch.Family {
    			case sys.ARM64, sys.AMD64:
    				// This must be fairly recent for Apple signing (go.dev/issue/30488).
    				// Having too old a version here was also implicated in some problems
    				// calling into macOS libraries (go.dev/issue/56784).
    				// In general this can be the most recent supported macOS version.
    				version = 11<<16 | 0<<8 | 0<<0 // 11.0.0
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/read.go

    	for _, info := range entries {
    		if info.IsDir() {
    			continue
    		}
    
    		if !info.Mode().IsRegular() {
    			return cache.ActionID{}, ErrNotIndexed
    		}
    		// To avoid problems for very recent files where a new
    		// write might not change the mtime due to file system
    		// mtime precision, reject caching if a file was read that
    		// is less than modTimeCutoff old.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// to match StaticCall's 32 bit arg size limit.
    	// TODO(drchase,josharian): could the arg size limit be bundled into the rules for CallOff?
    
    	// Before lowering, LECalls receive their fixed inputs (first), memory (last),
    	// and a variable number of input values in the middle.
    	// They produce a variable number of result values.
    	// These values are not necessarily "SSA-able"; they can be too large,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top