Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for records (2.75 sec)

  1. doc/go1.17_spec.html

    they cannot be used as function values.
    </p>
    
    <h3 id="Close">Close</h3>
    
    <p>
    For a channel <code>c</code>, the built-in function <code>close(c)</code>
    records that no more values will be sent on the channel.
    It is an error if <code>c</code> is a receive-only channel.
    Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
    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)
  2. doc/asm.html

    If the results will hold live pointers during a call instruction,
    the function should start by zeroing the results and then
    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    and should be scanned during stack movement and garbage collection.
    It is typically easier to arrange that assembly functions do not
    return pointers or do not contain call instructions;
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

    abstract class IncubatingApiReportAggregationWorkAction : WorkAction<IncubatingApiReportAggregationParameter> {
        override fun execute() {
            val byCategory = mutableMapOf<String, ReportNameToProblems>()
            parameters.reports.files.sorted().forEach { file ->
                file.forEachLine(Charsets.UTF_8) {
                    val (version, _, problem) = it.split(';')
                    byCategory.getOrPut(toCategory(version, file.nameWithoutExtension)) {
    HTML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    
    <h3 id="Close">Close</h3>
    
    <p>
    For an argument <code>ch</code> with a <a href="#Core_types">core type</a>
    that is a <a href="#Channel_types">channel</a>, the built-in function <code>close</code>
    records that no more values will be sent on the channel.
    It is an error if <code>ch</code> is a receive-only channel.
    Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top