Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for Bad (0.77 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	47:  "operation canceled",
    	48:  "operation not supported",
    	49:  "disc quota exceeded",
    	50:  "bad exchange descriptor",
    	51:  "bad request descriptor",
    	52:  "message tables full",
    	53:  "anode table overflow",
    	54:  "bad request code",
    	55:  "invalid slot",
    	56:  "file locking deadlock",
    	57:  "bad font file format",
    	58:  "owner of the lock died",
    	59:  "lock is not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		}
    		if want {
    			var addr uintptr
    			tp, addr = tp.next(interior + size)
    			if addr == 0 {
    				println("runtime: found bad iterator")
    				bad = true
    			}
    			if addr != x+i {
    				print("runtime: addr=", hex(addr), " x+i=", hex(x+i), "\n")
    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(interior + size)
    		if addr == 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    								{
    									// Make sure the bad policy did not select this workload.
    									path:  fmt.Sprintf("/policy-%s-%s-bad", to.Config().Namespace.Prefix(), to.Config().Service),
    									allow: false,
    								},
    								{
    									// Make sure the bad policy select this workload.
    									// Skip vm
    									path:        fmt.Sprintf("/policy-%s-%s-bad", to.Config().Namespace.Prefix(), to.Config().Service),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	}
    
    	// Check for bad pointers or pointers we can't use.
    	{
    		var bad string
    		p := uintptr(v)
    		if p+size < p {
    			bad = "region exceeds uintptr range"
    		} else if arenaIndex(p) >= 1<<arenaBits {
    			bad = "base outside usable address space"
    		} else if arenaIndex(p+size-1) >= 1<<arenaBits {
    			bad = "end outside usable address space"
    		}
    		if bad != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	return l.dynimplib[i]
    }
    
    // SetSymDynimplib sets the "dynimplib" attribute for a symbol.
    func (l *Loader) SetSymDynimplib(i Sym, value string) {
    	// reject bad symbols
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol index in SetDynimplib")
    	}
    	if value == "" {
    		delete(l.dynimplib, i)
    	} else {
    		l.dynimplib[i] = value
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/bytes/bytes_test.go

    			j := index(buf, 'x')
    			if j != n-1 {
    				b.Fatal("bad index", j)
    			}
    		}
    		buf[n-1] = '\x00'
    	}
    }
    
    func bmIndexRune(index func([]byte, rune) int) func(b *testing.B, n int) {
    	return func(b *testing.B, n int) {
    		buf := bmbuf[0:n]
    		utf8.EncodeRune(buf[n-3:], '世')
    		for i := 0; i < b.N; i++ {
    			j := index(buf, '世')
    			if j != n-3 {
    				b.Fatal("bad index", j)
    			}
    		}
    		buf[n-3] = '\x00'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    func (b *byteWithMarshalJSON) UnmarshalJSON(data []byte) error {
    	if len(data) != 5 || data[0] != '"' || data[1] != 'Z' || data[4] != '"' {
    		return fmt.Errorf("bad quoted string")
    	}
    	i, err := strconv.ParseInt(string(data[2:4]), 16, 8)
    	if err != nil {
    		return fmt.Errorf("bad hex")
    	}
    	*b = byteWithMarshalJSON(i)
    	return nil
    }
    
    type byteWithPtrMarshalJSON byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    			errstr: "zones cannot be present",
    		},
    		{
    			prefix: "1.1.1.0/+32",
    			errstr: "bad bits",
    		},
    		{
    			prefix: "1.1.1.0/-32",
    			errstr: "bad bits",
    		},
    		{
    			prefix: "1.1.1.0/032",
    			errstr: "bad bits",
    		},
    		{
    			prefix: "1.1.1.0/0032",
    			errstr: "bad bits",
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.prefix, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    					}
    				}
    				return false
    			}
    			if check(&claim, &pod) != tc.needsPodRef {
    				t.Errorf("Bad pod ref for %s hasPodRef=%v hasSetRef=%v", tc.name, hasPodRef, hasSetRef)
    			}
    			if check(&claim, &set) != tc.needsSetRef {
    				t.Errorf("Bad set ref for %s hasPodRef=%v hasSetRef=%v", tc.name, hasPodRef, hasSetRef)
    			}
    		}
    	}
    }
    
    func TestUpdateClaimControllerRef(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    				g: NoGoroutine,
    				p: NoProc,
    			}
    			o.mStates[m] = ms
    		}
    		curCtx.P = ms.p
    		curCtx.G = ms.g
    		newCtx = curCtx
    	}
    
    	f := orderingDispatch[ev.typ]
    	if f == nil {
    		return false, fmt.Errorf("bad event type found while ordering: %v", ev.typ)
    	}
    	newCtx, ok, err := f(o, ev, evt, m, gen, curCtx)
    	if err == nil && ok && ms != nil {
    		// Update the mState for this event.
    		ms.p = newCtx.P
    		ms.g = newCtx.G
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top