Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for receipt (0.5 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ram":                                  "\U0001f40f",
    	"ramen":                                "\U0001f35c",
    	"rat":                                  "\U0001f400",
    	"razor":                                "\U0001fa92",
    	"receipt":                              "\U0001f9fe",
    	"record_button":                        "\u23fa\ufe0f",
    	"recycle":                              "\u267b\ufe0f",
    	"red_car":                              "\U0001f697",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K 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. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_linux.go

    	h.Type = SCM_CREDENTIALS
    	h.SetLen(CmsgLen(SizeofUcred))
    	*(*Ucred)(h.data(0)) = *ucred
    	return b
    }
    
    // ParseUnixCredentials decodes a socket control message that contains
    // credentials in a Ucred structure. To receive such a message, the
    // SO_PASSCRED option must be enabled on the socket.
    func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) {
    	if m.Header.Level != SOL_SOCKET {
    		return nil, EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:21 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_pseudo_prefix.txt

    [short] skip
    [!git] skip
    
    # For this test repository go.mod resides in sub/ (only):
    #  master is not tagged
    #  tag v0.2.0 is most recent tag before master
    #  tag sub/v0.0.10 is most recent tag before v0.2.0
    #
    # The pseudo-version is based on sub/v0.0.10, since v0.2.0 doesn't
    # contain the prefix.
    go get vcs-test.golang.org/git/prefixtagtests.git/sub
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: false
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. Starting with a Private/Incognito tab/window may help rule out problematic browser extensions."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. doc/go_mem.html

    Channel communication is the main method of synchronization
    between goroutines.  Each send on a particular channel
    is matched to a corresponding receive from that channel,
    usually in a different goroutine.
    </p>
    
    <p class="rule">
    A send on a channel is synchronized before the completion of the
    corresponding receive from that channel.
    </p>
    
    <p>
    This program:
    </p>
    
    <pre>
    var c = make(chan int, 10)
    var a string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/imports/build.go

    			line, p = line[:i], p[i+1:]
    		} else {
    			p = p[len(p):]
    		}
    		line = bytes.TrimSpace(line)
    		if len(line) == 0 && !ended { // Blank line
    			// Remember position of most recent blank line.
    			// When we find the first non-blank, non-// line,
    			// this "end" position marks the latest file position
    			// where a // +build line can appear.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    # tag that appears in any commit that is a (transitive) parent of the commit
    # supplied to 'go get', regardless of branches
    
    [short] skip
    [!git] skip
    
    # For this test repository:
    #  tag v0.2.1 is most recent tag on master itself
    #  tag v0.2.2 is on branch2, which was then merged to master
    #  master is a merge commit with both tags as parents
    #
    # The pseudo-version hence sorts immediately after v0.2.2 rather
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top