Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,200 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/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)
  6. 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)
  7. 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)
  8. src/runtime/duff_arm64.s

    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    	STP.P	(ZR, ZR), 16(R20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 02 16:49:25 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/content/content.go

    	}
    	out, err := p.Runner.RunCmd("get pods -o yaml", p.IstioNamespace, p.KubeConfig, p.KubeContext, p.DryRun)
    	return map[string]string{
    		"pods": out,
    	}, err
    }
    
    // GetEvents returns events for all namespaces.
    func GetEvents(p *Params) (map[string]string, error) {
    	out, err := p.Runner.RunCmd("get events --all-namespaces -o wide --sort-by=.metadata.creationTimestamp", "", p.KubeConfig, p.KubeContext, p.DryRun)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/waitgroup_test.go

    	for try := 0; try < 3; try++ {
    		wg.Add(P)
    		for p := 0; p < P; p++ {
    			go func(p int) {
    				data[p]++
    				wg.Done()
    			}(p)
    		}
    		done := make(chan bool)
    		go func() {
    			wg.Wait()
    			for p := 0; p < P; p++ {
    				data[p]++
    			}
    			done <- true
    		}()
    		wg.Wait()
    		<-done
    		for p := 0; p < P; p++ {
    			data[p]++
    		}
    	}
    }
    
    func TestRaceWaitGroupReuse(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 5.3K bytes
    - Viewed (0)
Back to top