Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,702 for p$ (0.03 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    Russ Cox <******@****.***> 1531944576 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue43384.go

    		(&p).Mv()
    		(*&p).Mv()
    		p.Mp()
    		(&p).Mp()
    		(*&p).Mp()
    	}
    	{
    		var p P7
    		p.Mv()     // ERROR "undefined"
    		(&p).Mv()  // ERROR "undefined"
    		(*&p).Mv() // ERROR "undefined"
    		(**&p).Mv()
    		(*p).Mv()
    		(&*p).Mv()
    		p.Mp()     // ERROR "undefined"
    		(&p).Mp()  // ERROR "undefined"
    		(*&p).Mp() // ERROR "undefined"
    		(**&p).Mp()
    		(*p).Mp()
    		(&*p).Mp()
    	}
    	{
    		var p P8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 30 04:38:20 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue47127.go

    func _[P any]() {
            type (
                    _[P any] interface{ *P | []P | chan P | map[string]P }
                    _[P any] interface{ P /* ERROR "term cannot be a type parameter" */ }
                    _[P any] interface{ ~P /* ERROR "type in term ~P cannot be a type parameter" */ }
                    _[P any] interface{ int | P /* ERROR "term cannot be a type parameter" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/go/parser/short_test.go

    	`package p; type _ [A+B]struct{}`,
    	`package p; func (R) _()`,
    	`package p; type _ struct{ f [n]E }`,
    	`package p; type _ struct{ f [a+b+c+d]E }`,
    	`package p; type I1 interface{}; type I2 interface{ I1 }`,
    
    	// generic code
    	`package p; type _ []T[int]`,
    	`package p; type T[P any] struct { P }`,
    	`package p; type T[P comparable] struct { P }`,
    	`package p; type T[P comparable[P]] struct { P }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/generics.input

    func (x T[P]) m()
    func ((T[P])) m(x T[P]) P
    
    func _() {
    	type _ []T[P]
    	var _ []T[P]
    	_ = []T[P]{}
    }
    
    // type constraint literals with elided interfaces
    func _[P ~int, Q int | string]() {}
    func _[P struct{f int}, Q *P]() {}
    
    // various potentially ambiguous type parameter lists (issue #49482)
    type _[P *T,] struct{}
    type _[P T | T] struct{}
    type _[P T | T | T | T] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 16:18:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            where:
            source                                             | transformed
            "  <p>text</p>   "                                 | "<p>text</p>"
            "<p>text</p>   <p>text</p>"                        | "<p>text</p><p>text</p>"
            "<p>text</p>   <h2>text</h2> <table/>"             | "<p>text</p><h2>text</h2><table></table>"
            "  <table>  <tr>  <td>text</td> </tr>\r\n</table>" | "<table><tr><td>text</td></tr></table>"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/printer.go

    		p.print(_Func)
    		p.printSignature(n)
    
    	case *InterfaceType:
    		p.print(_Interface)
    		if p.linebreaks && len(n.MethodList) > 1 {
    			p.print(blank)
    			p.print(_Lbrace)
    			p.print(newline, indent)
    			p.printMethodList(n.MethodList)
    			p.print(outdent, newline)
    		} else {
    			p.print(_Lbrace)
    			p.printMethodList(n.MethodList)
    		}
    		p.print(_Rbrace)
    
    	case *MapType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. src/runtime/mem_sbrk.go

    		*p.next.ptr() = memHdr{}
    	} else {
    		bp.next = p.next
    	}
    	if uintptr(unsafe.Pointer(p))+p.size == bpn {
    		p.size += bp.size
    		p.next = bp.next
    		*bp = memHdr{}
    	} else {
    		p.next.set(bp)
    	}
    }
    
    func memCheck() {
    	if !memDebug {
    		return
    	}
    	for p := memFreelist.ptr(); p != nil && p.next != 0; p = p.next.ptr() {
    		if uintptr(unsafe.Pointer(p)) == uintptr(unsafe.Pointer(p.next)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/obj0.go

    		p.As = mov
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGLINK
    		p.To.Type = obj.TYPE_MEM
    		p.To.Offset = int64(-frameSize)
    		p.To.Reg = REGSP
    
    		// MOV	REGCTXT, -4/-8(SP)
    		p = obj.Appendp(p, c.newprog)
    		p.As = mov
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGCTXT
    		p.To.Type = obj.TYPE_MEM
    		p.To.Offset = -int64(c.ctxt.Arch.PtrSize)
    		p.To.Reg = REGSP
    
    		// ADD	$-8/$-16, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top