Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for init (0.17 sec)

  1. doc/go_mem.html

    </p>
    
    <h2 id="synchronization">Synchronization</h2>
    
    <h3 id="init">Initialization</h3>
    
    <p>
    Program initialization runs in a single goroutine,
    but that goroutine may create other goroutines,
    which run concurrently.
    </p>
    
    <p class="rule">
    If a package <code>p</code> imports package <code>q</code>, the completion of
    <code>q</code>'s <code>init</code> functions happens before the start of any of <code>p</code>'s.
    </p>
    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

      <code>go</code> <code>test</code>, will continue to work indefinitely
      for legacy <code>GOPATH</code> programs.
    </p>
    
    <!-- CL 518776 -->
    <p>
      <code>go</code> <code>mod</code> <code>init</code> no longer attempts to import
      module requirements from configuration files for other vendoring tools
      (such as <code>Gopkg.lock</code>).
    </p>
    
    <!-- CL 495447 -->
    <p>
    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

            is FieldDeclaration -> tryResolve({ "${inferClassName(unit)}.${it.resolve().name}" }) { inferClassName(unit) }
            is PackageDeclaration -> "${it.nameAsString} (package-info.java)"
            is NodeWithSimpleName<*> -> "${inferClassName(unit)}.${it.nameAsString}"
            else -> unit.primaryTypeName.orElse(file.name)
        }
    
        private
        fun inferClassName(unit: CompilationUnit) =
    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

    object file at the beginning of any name starting with a period:
    in an assembly source file within the math/rand package implementation,
    the package's Int function can be referred to as <code>ยทInt</code>.
    This convention avoids the need to hard-code a package's import path in its
    own source code, making it easier to move the code from one location to another.
    </p>
    
    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)
Back to top