Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for badstate (0.15 sec)

  1. test/recover.go

    	f := reflect.TypeOf(T3{}).Method(0).Func.Interface().(func(T3))
    	defer f(T3{})
    	panic(11)
    }
    
    // tiny receiver, so basic wrapper in i.M()
    type T3deeper struct{}
    
    func (T3deeper) M() {
    	badstate() // difference from T3
    	mustRecoverBody(doubleRecover(), recover(), recover(), 111)
    }
    
    func test111() {
    	var i I = T3deeper{}
    	defer i.M()
    	panic(111)
    }
    
    type Tiny struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java

            final SQLException sqlException = new SQLException("some reason", "fooState", 7650);
            final SQLException sqlException2 = new SQLException("hoge reason", "barState", 7660);
            final SQLException sqlException3 = new SQLException("fuga reason", "bazState", 7670);
            sqlException.setNextException(sqlException2);
            sqlException2.setNextException(sqlException3);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    				markChangedVars(blockLocs[previousBlock.ID].endState, locs.startState)
    			}
    			return locs.startState, blockChanged
    		}
    	}
    
    	baseID := preds[0].ID
    	baseState := p0
    
    	// Choose the predecessor with the smallest endState for intersection work
    	for _, pred := range preds[1:] {
    		if blockLocs[pred.ID].endState.Size() < baseState.Size() {
    			baseState = blockLocs[pred.ID].endState
    			baseID = pred.ID
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    		if cpu.S390X.HasVX {
    			updateVX(&h.macState, h.buffer[:])
    		} else {
    			updateGeneric(&h.macState, h.buffer[:])
    		}
    	}
    
    	tail := len(p) % len(h.buffer) // number of bytes to copy into buffer
    	body := len(p) - tail          // number of bytes to process now
    	if body > 0 {
    		if cpu.S390X.HasVX {
    			updateVX(&h.macState, p[:body])
    		} else {
    			updateGeneric(&h.macState, p[:body])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/term/term.go

    // commonly found on UNIX systems.
    //
    // Putting a terminal into raw mode is the most common requirement:
    //
    //	oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
    //	if err != nil {
    //	        panic(err)
    //	}
    //	defer term.Restore(int(os.Stdin.Fd()), oldState)
    //
    // Note that on non-Unix systems os.Stdin.Fd() may not be 0.
    package term
    
    // State contains the state of a terminal.
    type State struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.go

    			return nn, nil
    		}
    		p = p[n:]
    		h.offset = 0
    		update(&h.macState, h.buffer[:])
    	}
    	if n := len(p) - (len(p) % TagSize); n > 0 {
    		update(&h.macState, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		h.offset += copy(h.buffer[h.offset:], p)
    	}
    	return nn, nil
    }
    
    func (h *mac) Sum(out *[16]byte) {
    	state := h.macState
    	if h.offset > 0 {
    		update(&state, h.buffer[:h.offset])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    				podState.firstStartedPulling.Add(time.Second*10), podState.firstStartedPulling)
    		}
    		if !podState.lastFinishedPulling.Equal(frozenTime.Add(time.Second * 20)) { // should be updated when the pod's last image finished pulling
    			t.Errorf("expected pod lastFinishedPulling: %s but got lastFinishedPulling: %s",
    				podState.lastFinishedPulling.Add(time.Second*20), podState.lastFinishedPulling)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/regexp/backtrack.go

    )
    
    // bitState holds state for the backtracker.
    type bitState struct {
    	end      int
    	cap      []int
    	matchcap []int
    	jobs     []job
    	visited  []uint32
    
    	inputs inputs
    }
    
    var bitStatePool sync.Pool
    
    func newBitState() *bitState {
    	b, ok := bitStatePool.Get().(*bitState)
    	if !ok {
    		b = new(bitState)
    	}
    	return b
    }
    
    func freeBitState(b *bitState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	h.Write(msg)
    	h.Sum(out)
    }
    
    func newMACGeneric(key *[32]byte) macGeneric {
    	m := macGeneric{}
    	initialize(key, &m.macState)
    	return m
    }
    
    // macState holds numbers in saturated 64-bit little-endian limbs. That is,
    // the value of [x0, x1, x2] is x[0] + x[1] * 2⁶⁴ + x[2] * 2¹²⁸.
    type macState struct {
    	// h is the main accumulator. It is to be interpreted modulo 2¹³⁰ - 5, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go

    			return nn, nil
    		}
    		p = p[n:]
    		h.offset = 0
    		update(&h.macState, h.buffer[:])
    	}
    	if n := len(p) - (len(p) % TagSize); n > 0 {
    		update(&h.macState, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		h.offset += copy(h.buffer[h.offset:], p)
    	}
    	return nn, nil
    }
    
    func (h *mac) Sum(out *[16]byte) {
    	state := h.macState
    	if h.offset > 0 {
    		update(&state, h.buffer[:h.offset])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top