Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Unwrap (0.91 sec)

  1. api/go1.23.txt

    pkg math/rand/v2, func Uint() uint #61716
    pkg math/rand/v2, method (*ChaCha8) Read([]uint8) (int, error) #67059
    pkg math/rand/v2, method (*Rand) Uint() uint #61716
    pkg net, method (*DNSError) Unwrap() error #63116
    pkg net, method (*TCPConn) SetKeepAliveConfig(KeepAliveConfig) error #62254
    pkg net, type DNSError struct, UnwrapErr error #63116
    pkg net, type Dialer struct, KeepAliveConfig KeepAliveConfig #62254
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    // An ArgumentError holds an error associated with an argument index.
    type ArgumentError struct {
    	Index int
    	Err   error
    }
    
    func (e *ArgumentError) Error() string { return e.Err.Error() }
    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    // CAUTION: This interface does not support the import of locally
    // vendored packages. See https://golang.org/s/go15vendor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	}
    	return err
    }
    
    func (e *importError) Error() string {
    	return e.err.Error()
    }
    
    func (e *importError) Unwrap() error {
    	// Don't return e.err directly, since we're only wrapping an error if %w
    	// was passed to ImportErrorf.
    	return errors.Unwrap(e.err)
    }
    
    func (e *importError) ImportPath() string {
    	return e.importPath
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	// to _cgoCheckPointer, as done in checkIndex and checkAddr.
    	//
    	// When the function argument is a conversion to unsafe.Pointer,
    	// we unwrap the conversion before checking the pointer,
    	// and then wrap again when calling C.f. This lets us check
    	// the real type of the pointer in some cases. See issue #25941.
    	//
    	// When the call to C.f is deferred, we use an additional function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    		}
    	case *Interface:
    		if isTypeParam(bound) {
    			// error is reported in Checker.collectTypeParams
    			return &emptyInterface
    		}
    		ityp = u
    	}
    
    	// If we don't have an interface, wrap constraint into an implicit interface.
    	if ityp == nil {
    		ityp = NewInterfaceType(nil, []Type{bound})
    		ityp.implicit = true
    		t.bound = ityp // update t.bound for next time (optimization)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/func.go

    		base.FatalfAt(pos, "closureName: bad Op: %v", why)
    	case OCLOSURE:
    		if outerfn == nil || outerfn.OClosure == nil {
    			suffix = ".func"
    		}
    	case ORANGE:
    		suffix = "-range"
    	case OGO:
    		suffix = ".gowrap"
    	case ODEFER:
    		suffix = ".deferwrap"
    	}
    	gen := &globClosgen
    
    	// There may be multiple functions named "_". In those
    	// cases, we can't use their individual Closgens as it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/cmd/trace/regions.go

    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/cmd/trace/tasks.go

      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    table#reqs td.elapsed {
      padding: 0 0.5em;
      text-align: right;
      white-space: pre;
      width: 10em;
    }
    address {
      font-size: smaller;
      margin-top: 5em;
    }
    </style>
    <body>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/instantiate.go

    //
    // If validate is set, Instantiate verifies that the number of type arguments
    // and parameters match, and that the type arguments satisfy their respective
    // type constraints. If verification fails, the resulting error may wrap an
    // *ArgumentError indicating which type argument did not satisfy its type parameter
    // constraint, and why.
    //
    // If validate is not set, Instantiate does not verify the type argument count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		directive = fmt.Sprintf("%s %s: ", e.Verb, e.ModPath)
    	} else if e.Verb != "" {
    		directive = fmt.Sprintf("%s: ", e.Verb)
    	}
    
    	return pos + directive + e.Err.Error()
    }
    
    func (e *Error) Unwrap() error { return e.Err }
    
    func parseVersion(verb string, path string, s *string, fix VersionFixer) (string, error) {
    	t, err := parseString(s)
    	if err != nil {
    		return "", &Error{
    			Verb:    verb,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top