Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for receipt (5.68 sec)

  1. .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:
    Others
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    &*x  // causes a run-time panic
    </pre>
    
    
    <h3 id="Receive_operator">Receive operator</h3>
    
    <p>
    For an operand <code>ch</code> of <a href="#Channel_types">channel type</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.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const EV_OOBAND ideal-int
    pkg syscall (darwin-arm64), const EV_POLL = 4096
    pkg syscall (darwin-arm64), const EV_POLL ideal-int
    pkg syscall (darwin-arm64), const EV_RECEIPT = 64
    pkg syscall (darwin-arm64), const EV_RECEIPT ideal-int
    pkg syscall (darwin-arm64), const EV_SYSFLAGS = 61440
    pkg syscall (darwin-arm64), const EV_SYSFLAGS ideal-int
    pkg syscall (darwin-arm64), const EWOULDBLOCK = 35
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EV_FLAG1 ideal-int
    pkg syscall (freebsd-arm64), const EV_ONESHOT = 16
    pkg syscall (freebsd-arm64), const EV_ONESHOT ideal-int
    pkg syscall (freebsd-arm64), const EV_RECEIPT = 64
    pkg syscall (freebsd-arm64), const EV_RECEIPT ideal-int
    pkg syscall (freebsd-arm64), const EV_SYSFLAGS = 61440
    pkg syscall (freebsd-arm64), const EV_SYSFLAGS ideal-int
    pkg syscall (freebsd-arm64), const EVFILT_AIO = -3
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EV_ONESHOT = 16 #53466
    pkg syscall (freebsd-riscv64), const EV_ONESHOT ideal-int #53466
    pkg syscall (freebsd-riscv64), const EV_RECEIPT = 64 #53466
    pkg syscall (freebsd-riscv64), const EV_RECEIPT ideal-int #53466
    pkg syscall (freebsd-riscv64), const EV_SYSFLAGS = 61440 #53466
    pkg syscall (freebsd-riscv64), const EV_SYSFLAGS ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (darwin-386), const EV_ONESHOT ideal-int
    pkg syscall (darwin-386), const EV_OOBAND ideal-int
    pkg syscall (darwin-386), const EV_POLL ideal-int
    pkg syscall (darwin-386), const EV_RECEIPT ideal-int
    pkg syscall (darwin-386), const EV_SYSFLAGS ideal-int
    pkg syscall (darwin-386), const EXTA ideal-int
    pkg syscall (darwin-386), const EXTB ideal-int
    pkg syscall (darwin-386), const EXTPROC ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. src/bytes/buffer.go

    	}
    	r, n := utf8.DecodeRune(b.buf[b.off:])
    	b.off += n
    	b.lastRead = readOp(n)
    	return r, n, nil
    }
    
    // UnreadRune unreads the last rune returned by [Buffer.ReadRune].
    // If the most recent read or write operation on the buffer was
    // not a successful [Buffer.ReadRune], UnreadRune returns an error.  (In this regard
    // it is stricter than [Buffer.UnreadByte], which will unread the last byte
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/bufio/example_test.go

    		fmt.Println(scanner.Text()) // Println will add back the final '\n'
    	}
    	if err := scanner.Err(); err != nil {
    		fmt.Fprintln(os.Stderr, "reading standard input:", err)
    	}
    }
    
    // Return the most recent call to Scan as a []byte.
    func ExampleScanner_Bytes() {
    	scanner := bufio.NewScanner(strings.NewReader("gopher"))
    	for scanner.Scan() {
    		fmt.Println(len(scanner.Bytes()) == 6)
    	}
    	if err := scanner.Err(); err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/bufio/scan.go

    		return nil
    	}
    	return s.err
    }
    
    // Bytes returns the most recent token generated by a call to [Scanner.Scan].
    // The underlying array may point to data that will be overwritten
    // by a subsequent call to Scan. It does no allocation.
    func (s *Scanner) Bytes() []byte {
    	return s.token
    }
    
    // Text returns the most recent token generated by a call to [Scanner.Scan]
    // as a newly allocated string holding its bytes.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  10. 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.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top