Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for panicmem (0.18 sec)

  1. src/cmd/cgo/internal/test/test.go

            return f;
    }
    
    void init() {
            SansTypeface = loadfont();
    }
    
    // issue 5242
    // Cgo incorrectly computed the alignment of structs
    // with no Go accessible fields as 0, and then panicked on
    // modulo-by-zero computations.
    
    // issue 50987
    // disable arm64 GCC warnings
    #cgo CFLAGS: -Wno-psabi -Wno-unknown-warning-option
    
    typedef struct {
    } foo;
    
    typedef struct {
    	int x : 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

    func TestCVE202230633(t *testing.T) {
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		t.Skip("test requires significant memory")
    	}
    	defer func() {
    		p := recover()
    		if p != nil {
    			t.Fatal("Unmarshal panicked")
    		}
    	}()
    	var example struct {
    		Things []string
    	}
    	Unmarshal(bytes.Repeat([]byte("<a>"), 17_000_000), &example)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    				// we're not guaranteeing a fully unbroken trace until the last
    				// byte...
    				seen = true
    			}
    		}
    	}
    	if err := cmd.Wait(); err == nil {
    		t.Error("the process should have panicked")
    	}
    	if !seenSync {
    		t.Errorf("expected at least one full generation to have been emitted before the trace was considered broken")
    	}
    	if !seen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/encoding/json/encode_test.go

    	defer func() {
    		if got := recover(); !reflect.DeepEqual(got, 0xdead) {
    			t.Errorf("panic() = (%T)(%v), want 0xdead", got, got)
    		}
    	}()
    	Marshal(&marshalPanic{})
    	t.Error("Marshal should have panicked")
    }
    
    func TestMarshalUncommonFieldNames(t *testing.T) {
    	v := struct {
    		A0, À, Aβ int
    	}{}
    	b, err := Marshal(v)
    	if err != nil {
    		t.Fatal("Marshal error:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/slices/slices_test.go

    		{"s[i:j] is valid and j > len(s)", s, nil, 0, 4},
    	} {
    		ss, vv := Clone(test.s), Clone(test.v)
    		if !panics(func() { _ = Replace(ss, test.i, test.j, vv...) }) {
    			t.Errorf("Replace %s: should have panicked", test.name)
    		}
    	}
    }
    
    func TestReplaceGrow(t *testing.T) {
    	// When Replace needs to allocate a new slice, we want the original slice
    	// to not be changed.
    	a, b, c, d, e, f := 1, 2, 3, 4, 5, 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    		if err := isSticky(rc); err != nil {
    			t.Errorf("%d. error: %v", i, err)
    		}
    	}
    }
    
    // Issue 45101: maxBytesReader's Read panicked when n < -1. This test
    // also ensures that Read treats negative limits as equivalent to 0.
    func TestMaxBytesReaderDifferentLimits(t *testing.T) {
    	const testStr = "1234"
    	tests := [...]struct {
    		limit   int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    abi.RF_DONE = 0      // body of loop has exited in a non-panic way
    abi.RF_READY = 1     // body of loop has not exited yet, is not running
    abi.RF_PANIC = 2     // body of loop is either currently running, or has panicked
    abi.RF_EXHAUSTED = 3 // iterator function call, e.g. f(func(x t){...}), returned so the sequence is "exhausted".
    
    abi.RF_MISSING_PANIC = 4 // used to report errors.
    
    The value of #stateK transitions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top