Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,618 for Atack (0.03 sec)

  1. src/go/types/stdlib_test.go

    		"issue20529.go",  // go/types does not have constraints on stack size
    		"issue22200.go",  // go/types does not have constraints on stack size
    		"issue22200b.go", // go/types does not have constraints on stack size
    		"issue25507.go",  // go/types does not have constraints on stack size
    		"issue20780.go",  // go/types does not have constraints on stack size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue27201.go

    	defer checkstack()
    	v := *p         // panic should happen here, line 20
    	sink = int64(v) // not here, line 21
    }
    
    var sink int64
    
    func checkstack() {
    	_ = recover()
    	var buf [1024]byte
    	n := runtime.Stack(buf[:], false)
    	s := string(buf[:n])
    	if strings.Contains(s, "issue27201.go:21 ") {
    		panic("panic at wrong location")
    	}
    	if !strings.Contains(s, "issue27201.go:20 ") {
    		panic("no panic at correct location")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 14 22:41:33 UTC 2019
    - 681 bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/pprof.go

    			return
    		}
    		defer os.Remove(svgFilename)
    		w.Header().Set("Content-Type", "image/svg+xml")
    		http.ServeFile(w, r, svgFilename)
    	}
    }
    
    type ProfileRecord struct {
    	Stack []*trace.Frame
    	Count uint64
    	Time  time.Duration
    }
    
    func BuildProfile(prof []ProfileRecord) *profile.Profile {
    	p := &profile.Profile{
    		PeriodType: &profile.ValueType{Type: "trace", Unit: "count"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. internal/fips/no_fips.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 21 14:54:48 UTC 2022
    - 833 bytes
    - Viewed (0)
  5. internal/fips/no_go19.go

    // Copyright (c) 2015-2022 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 30 19:37:07 UTC 2022
    - 834 bytes
    - Viewed (0)
  6. src/regexp/backtrack.go

    //
    // backtrack is a fast replacement for the NFA code on small
    // regexps when onepass cannot be used.
    
    package regexp
    
    import (
    	"regexp/syntax"
    	"sync"
    )
    
    // A job is an entry on the backtracker's job stack. It holds
    // the instruction pc and the position in the input.
    type job struct {
    	pc  uint32
    	arg bool
    	pos int
    }
    
    const (
    	visitedBits        = 32
    	maxBacktrackProg   = 500        // len(prog.Inst) <= max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. test/fixedbugs/issue30977.go

    }
    
    //go:noinline
    func f() {
    	// The compiler optimizes this to direct copying
    	// the call result to both globals, with write
    	// barriers. The first write barrier call clobbers
    	// the result of g on stack.
    	X = g()
    	Y = X
    }
    
    var X, Y T
    
    const N = 1000
    
    func main() {
    	// Keep GC running so the write barrier is on.
    	go func() {
    		for {
    			runtime.GC()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:05:13 UTC 2019
    - 865 bytes
    - Viewed (0)
  8. internal/ioutil/read_file_noatime_supported.go

    //go:build !windows && !darwin && !freebsd
    // +build !windows,!darwin,!freebsd
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 937 bytes
    - Viewed (0)
  9. src/runtime/nonwindows_stub.go

    func enableWER() {}
    
    // winlibcall is not implemented on non-Windows systems,
    // but it is used in non-OS-specific parts of the runtime.
    // Define it as an empty struct to avoid wasting stack space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  10. test/fixedbugs/issue40954.go

    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    func recurse(n int, p *S, v uintptr) {
    	if n > 0 {
    		recurse(n-1, p, v)
    	}
    	if uintptr(unsafe.Pointer(p)) != v {
    		panic("adjusted notinheap pointer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
Back to top