Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LT (0.21 sec)

  1. doc/go_mem.html

    corresponding receive from that channel.
    </p>
    
    <p>
    This program:
    </p>
    
    <pre>
    var c = make(chan int, 10)
    var a string
    
    func f() {
    	a = "hello, world"
    	c &lt;- 0
    }
    
    func main() {
    	go f()
    	&lt;-c
    	print(a)
    }
    </pre>
    
    <p>
    is guaranteed to print <code>"hello, world"</code>.  The write to <code>a</code>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    var i = 1&lt;&lt;s                   // 1 has type int
    var j int32 = 1&lt;&lt;s             // 1 has type int32; j == 0
    var k = uint64(1&lt;&lt;s)           // 1 has type uint64; k == 1&lt;&lt;33
    var m int = 1.0&lt;&lt;s             // 1.0 has type int; m == 1&lt;&lt;33
    var n = 1.0&lt;&lt;s == j            // 1.0 has type int32; n == true
    var o = 1&lt;&lt;s == 2&lt;&lt;s           // 1 and 2 have type int; o == false
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

                    versions[version!!] = date
                }
            }
            return versions
        }
    
    
        private
        fun String.escape() = replace("<", "&lt;").replace(">", "&gt;")
    }
    
    
    private
    typealias Version = String
    
    
    private
    typealias IncubatingDescription = String
    
    
    private
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  4. doc/asm.html

    One is in constant evaluation.
    Constant expressions in the assembler are parsed using Go's operator
    precedence, not the C-like precedence of the original.
    Thus <code>3&amp;1&lt;&lt;2</code> is 4, not 0—it parses as <code>(3&amp;1)&lt;&lt;2</code>
    not <code>3&amp;(1&lt;&lt;2)</code>.
    Also, constants are always evaluated as 64-bit unsigned integers.
    Thus <code>-2</code> is not the integer value minus two,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

                        }
                        writer.println("</ul>")
                    }
                }
                writer.println("</body></html>")
            }
        }
    
        private
        fun String.escape() = replace("<", "&lt;").replace(">", "&gt;")
    }
    
    
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  6. doc/go_spec.html

    var i = 1&lt;&lt;s                   // 1 has type int
    var j int32 = 1&lt;&lt;s             // 1 has type int32; j == 0
    var k = uint64(1&lt;&lt;s)           // 1 has type uint64; k == 1&lt;&lt;33
    var m int = 1.0&lt;&lt;s             // 1.0 has type int; m == 1&lt;&lt;33
    var n = 1.0&lt;&lt;s == j            // 1.0 has type int32; n == true
    var o = 1&lt;&lt;s == 2&lt;&lt;s           // 1 and 2 have type int; o == false
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top