Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for it (0.16 sec)

  1. doc/go_mem.html

    then any read <i>r</i> on <i>x</i> has only one possible <i>W</i>(<i>r</i>):
    the single <i>w</i> that immediately precedes it in the happens before order.
    </p>
    
    <p>
    More generally, it can be shown that any Go program that is data-race-free,
    meaning it has no program executions with read-write or write-write data races,
    can only have outcomes explained by some sequentially consistent interleaving
    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.22.html

        The <a href="https://go.dev/wiki/LoopvarExperiment#my-test-fails-with-the-change-how-can-i-debug-it">transition support tooling</a>
        described in the proposal continues to work in the same way it did in Go 1.21.
      </li>
      <li>
        "For" loops may now range over integers.
        For <a href="https://go.dev/play/p/ky02zZxgk_r?v=gotip">example</a>:
    <pre>
    package main
    
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

        private
        fun nodeName(it: Node?, unit: CompilationUnit, file: File) = when (it) {
            is EnumDeclaration -> tryResolve({ it.resolve().qualifiedName }) { inferClassName(unit) }
            is ClassOrInterfaceDeclaration -> tryResolve({ it.resolve().qualifiedName }) { inferClassName(unit) }
            is MethodDeclaration -> tryResolve({ it.resolve().qualifiedSignature }) { "${inferClassName(unit)}.${it.name}()" }
    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/go1.17_spec.html

    <a href="#Types">underlying type</a> and operations as the given type,
    and binds an identifier to it.
    </p>
    
    <pre class="ebnf">
    TypeDef = identifier Type .
    </pre>
    
    <p>
    The new type is called a <i>defined type</i>.
    It is <a href="#Type_identity">different</a> from any other type,
    including the type it is created from.
    </p>
    
    <pre>
    type (
    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)
  5. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
          <a title="Build, run and scale your apps on a modern, reliable, and secure PaaS." style="display: block; position: relative;" href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank">
            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/platform-sh-banner.png" />
    HTML
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon Mar 25 23:10:11 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    and binds an identifier, the <i>type name</i>, to it.
    </p>
    
    <pre class="ebnf">
    TypeDef = identifier [ TypeParameters ] Type .
    </pre>
    
    <p>
    The new type is called a <i>defined type</i>.
    It is <a href="#Type_identity">different</a> from any other type,
    including the type it is created from.
    </p>
    
    <pre>
    type (
    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)
  7. doc/asm.html

    are defined for all architectures: if the compiler doesn't generate it, it might not be there.
    If you need to use a missing instruction, there are two ways to proceed.
    One is to update the assembler to support that instruction, which is straightforward
    but only worthwhile if it's likely the instruction will be used again.
    Instead, for simple one-off cases, it's possible to use the <code>BYTE</code>
    and <code>WORD</code> directives
    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)
  8. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

            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)) {
                        mutableMapOf()
                    }.getOrPut(file.nameWithoutExtension) {
                        mutableSetOf()
    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)
Back to top