Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for Bad (0.33 sec)

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

    		if !buildcfg.Experiment.RangeFunc && allowVersion != nil && !allowVersion(go1_23) {
    			return bad("requires go1.23 or later")
    		}
    		assert(typ.Recv() == nil)
    		switch {
    		case typ.Params().Len() != 1:
    			return bad("func must be func(yield func(...) bool): wrong argument count")
    		case toSig(typ.Params().At(0).Type()) == nil:
    			return bad("func must be func(yield func(...) bool): argument is not func")
    		case typ.Results().Len() != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	if err != nil {
    		return "", err
    	}
    	var bad string
    	if len(dirs) == 0 {
    		bad = "No"
    	} else if len(dirs) > 1 {
    		bad = "More than one"
    	}
    	if bad != "" {
    		return "", fmt.Errorf("%s directory matches *stdlib/*minor.\nThis shouldn't happen; please file a bug at https://go.dev/issues/new.",
    			bad)
    	}
    	return dirs[0], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/trace/testtrace/validation.go

    			}
    			state, ok := v.gs[id]
    			if ok {
    				if old != state.state {
    					e.Errorf("bad old state for goroutine %d: got %s, want %s", id, old, state.state)
    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device or resource busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    		return v.float()
    	case KindString:
    		return v.str()
    	case KindBool:
    		return v.bool()
    	case KindDuration:
    		return v.duration()
    	case KindTime:
    		return v.time()
    	default:
    		panic(fmt.Sprintf("bad kind: %s", v.Kind()))
    	}
    }
    
    // String returns Value's value as a string, formatted like [fmt.Sprint]. Unlike
    // the methods Int64, Float64, and so on, which panic if v is of the
    // wrong kind, String never panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    	fi, err := Lstat(newname)
    	if err == nil && fi.IsDir() {
    		// There are two independent errors this function can return:
    		// one for a bad oldname, and one for a bad newname.
    		// At this point we've determined the newname is bad.
    		// But just in case oldname is also bad, prioritize returning
    		// the oldname error because that's what we did historically.
    		// However, if the old name and new name are not the same, yet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device or resource busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/sym.go

    				s.SymIdx = hashed64idx
    				if hashed64idx != int32(len(ctxt.hashed64defs)) {
    					panic("bad index")
    				}
    				ctxt.hashed64defs = append(ctxt.hashed64defs, s)
    				hashed64idx++
    			} else {
    				s.PkgIdx = goobj.PkgIdxHashed
    				s.SymIdx = hashedidx
    				if hashedidx != int32(len(ctxt.hasheddefs)) {
    					panic("bad index")
    				}
    				ctxt.hasheddefs = append(ctxt.hasheddefs, s)
    				hashedidx++
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaim_test.go

    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/time/format_test.go

    		t.Errorf("%s: bad year: %d not %d", test.name, time.Year(), 2010)
    	}
    	if time.Month() != February {
    		t.Errorf("%s: bad month: %s not %s", test.name, time.Month(), February)
    	}
    	if time.Day() != 4 {
    		t.Errorf("%s: bad day: %d not %d", test.name, time.Day(), 4)
    	}
    	if time.Hour() != 21 {
    		t.Errorf("%s: bad hour: %d not %d", test.name, time.Hour(), 21)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top