Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Messages (0.38 sec)

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

      func f(x *operand, e *syntax.Expr, ...)
    
    where e is the expression to be checked, and x is the result of the check.
    The check performed by f may fail in which case x.mode == invalid, and
    related error messages will have been issued by f.
    
    If a hint argument is present, it is the composite literal element type
    of an outer composite literal; it is used to type-check composite literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    	case _Semi:
    		return "semicolon or newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		return needType
    	}
    
    	// Coerce gcc into telling us whether each name is a type, a value, or undeclared.
    	// For names, find out whether they are integer constants.
    	// We used to look at specific warning or error messages here, but that tied the
    	// behavior too closely to specific versions of the compilers.
    	// Instead, arrange that we can infer what we need from only the presence or absence
    	// of an error on a specific line.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    of GOMAXPROCS. -cpu does not apply to fuzz tests matched by -fuzz.
    
    	-failfast
    	    Do not start new tests after the first test failure.
    
    	-fullpath
    	    Show full file names in the error messages.
    
    	-fuzz regexp
    	    Run the fuzz test matching the regular expression. When specified,
    	    the command line argument must match exactly one package within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// Other errors may affect package loading, but not resolution.
    		if _, err := fsys.Stat(absDir); err != nil {
    			if os.IsNotExist(err) {
    				// Canonicalize OS-specific errors to errDirectoryNotFound so that error
    				// messages will be easier for users to search for.
    				return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
    			}
    			return "", err
    		}
    		if _, noGo := err.(*build.NoGoError); noGo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	runSkips       = flag.Bool("run_skips", false, "run skipped tests (ignore skip and build tags)")
    	linkshared     = flag.Bool("linkshared", false, "")
    	updateErrors   = flag.Bool("update_errors", false, "update error messages in test file based on compiler output")
    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    	force          = flag.Bool("f", false, "ignore expected-failure test lists")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	if ctxt.HeadType == objabi.Haix {
    		// Initial map used to store package size for each DWARF section.
    		dwsectCUSize = make(map[string]uint64)
    	}
    
    	// For ctxt.Diagnostic messages.
    	newattr(&dwtypes, dwarf.DW_AT_name, dwarf.DW_CLS_STRING, int64(len("dwtypes")), "dwtypes")
    
    	// Unspecified type. There are no references to this in the symbol table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    //   - Types[TUNSAFEPTR] is package unsafe's Pointer type.
    var Types [NTYPE]*Type
    
    var (
    	// Predeclared alias types. These are actually created as distinct
    	// defined types for better error messages, but are then specially
    	// treated as identical to their respective underlying types.
    	AnyType  *Type
    	ByteType *Type
    	RuneType *Type
    
    	// Predeclared error interface type.
    	ErrorType *Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{117, "ECANCELED", "asynchronous I/O cancelled"},
    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	{87, "EOVERFLOW", "value too large to be stored in data type"},
    	{88, "ECANCELED", "operation canceled"},
    	{89, "EIDRM", "identifier removed"},
    	{90, "ENOMSG", "no message of desired type"},
    	{91, "ENOTSUP", "not supported"},
    	{92, "EBADMSG", "bad message"},
    	{93, "ENOTRECOVERABLE", "state not recoverable"},
    	{94, "EOWNERDEAD", "previous owner died"},
    	{95, "ELAST", "protocol error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
Back to top