Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for its (0.14 sec)

  1. src/cmd/compile/internal/types2/named.go

    // N may not be immediately available.
    //  - During type-checking, we allocate N before type-checking its underlying
    //    type or methods, so that we may resolve recursive references.
    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/runtime/debug/42888.md

    The [SetCrashOutput] function allows the user to specify an alternate
    file to which the runtime should write its fatal crash report.
    It may be used to construct an automated reporting mechanism for all
    unexpected crashes, not just those in goroutines that explicitly use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 282 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    			// pruning then it should satisfy the import invariant itself, so all of
    			// its dependencies should be in its go.mod file, and if the module
    			// containing the package does not support pruning then if we make it a
    			// root we will load all of its (unpruned) transitive dependencies into
    			// the module graph.
    			//
    			// (This is the “argument invariant”, and is important for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	// We don't need this restriction anymore if we make the underlying type of a type
    	// parameter its constraint interface: if the RHS is a lone type parameter, we will
    	// use its underlying type (like we do for any RHS in a type declaration), and its
    	// underlying type is an interface and the type declaration is well defined.
    	if isTypeParam(rhs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/alias.go

    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    // A generic Alias and its instances have the same type parameters.
    func (a *Alias) TypeParams() *TypeParamList { return a.tparams }
    
    // SetTypeParams sets the type parameters of the alias type a.
    // The alias a must not have type arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // needed, and updates its state to reflect the given flags.
    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    // ld.work queue, and its test (if requested) will also be populated once
    // imports have been resolved. When ld.work goes idle, all transitive imports of
    // the requested package (and its test, if requested) will have been loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_direct_work.txt

    -- a/a.go --
    package a
    
    import "rsc.io/sampler"
    
    func A() string {
        return sampler.Hello()
    }
    -- b/go.mod --
    module example.com/b
    
    go 1.23
    
    // The indrect comment below is inaccurate. Its purpose
    // is to test that it is corrected when enough packages
    // are loaded to correct it.
    
    require example.com/c v1.0.0 // indirect
    
    replace example.com/c => ../c
    -- b/b.go --
    package b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/instantiate.go

    // through substitution of type parameters by type arguments.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"errors"
    	"fmt"
    	. "internal/types/errors"
    )
    
    // A genericType implements access to its type parameters.
    type genericType interface {
    	Type
    	TypeParams() *TypeParamList
    }
    
    // Instantiate instantiates the type orig with the given type arguments targs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/loong64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file encapsulates some of the odd characteristics of the
    // Loong64 (LoongArch64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    	switch word {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    // weight, Add blocks until all other tasks have completed, then the task
    // executes exclusively (blocking all other calls to Add until it completes).
    //
    // f may run concurrently in a goroutine, but its output to the passed-in
    // reporter will be sequential relative to the other tasks in the sequencer.
    //
    // If f invokes a method on the reporter, execution of that method may block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top