Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 7,702 for p$ (0.09 sec)

  1. test/ken/embed.go

    	return p.a
    }
    func (p *SubpSub) testx() { println("SubpSub", p, p.a6) }
    
    /******
     ******
     ******/
    
    type SubSubp struct {
    	a5 int
    	a  int
    }
    
    func (p *SubSubp) test5() int {
    	if p.a != p.a5 {
    		println("SubpSub", p, p.a5)
    		panic("fail")
    	}
    	return p.a
    }
    
    /******
     ******
     ******/
    
    type SubSub struct {
    	a4 int
    	a  int
    }
    
    func (p *SubSub) test4() int {
    	if p.a != p.a4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 03 17:03:15 UTC 2016
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    }
    
    func (in *input) _byte(p int) byte {
    	if in.bytes == nil {
    		return in.str[p]
    	}
    	return in.bytes[p]
    }
    
    func (in *input) skipASCII(p, max int) int {
    	if in.bytes == nil {
    		for ; p < max && in.str[p] < utf8.RuneSelf; p++ {
    		}
    	} else {
    		for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ {
    		}
    	}
    	return p
    }
    
    func (in *input) skipContinuationBytes(p int) int {
    	if in.bytes == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/runtime/memmove_test.go

    	p := new([14]byte)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [14]byte{}
    	}
    }
    
    func BenchmarkClearFat15(b *testing.B) {
    	p := new([15]byte)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [15]byte{}
    	}
    }
    
    func BenchmarkClearFat16(b *testing.B) {
    	p := new([16 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [16 / 4]uint32{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. cmd/xl-storage-disk-id-check.go

    	return p.storage.IsLocal()
    }
    
    func (p *xlStorageDiskIDCheck) Endpoint() Endpoint {
    	return p.storage.Endpoint()
    }
    
    func (p *xlStorageDiskIDCheck) Hostname() string {
    	return p.storage.Hostname()
    }
    
    func (p *xlStorageDiskIDCheck) Healing() *healingTracker {
    	return p.storage.Healing()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

                assertThat(p, nullValue())
            }
    
            withMockForProject(existing = "p" to null) {
    
                val p: Int? by project
                assertThat(p, nullValue())
            }
        }
    
        @Test
        fun `nullable delegated property access of non-existing gradle property`() {
    
            withMockForSettings(absent = "p") {
    
                val p: Int? by settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    func nextASCIIBytes(i *Iter) []byte {
    	p := i.p + 1
    	if p >= i.rb.nsrc {
    		p0 := i.p
    		i.setDone()
    		return i.rb.src.bytes[p0:p]
    	}
    	if i.rb.src.bytes[p] < utf8.RuneSelf {
    		p0 := i.p
    		i.p = p
    		return i.rb.src.bytes[p0:p]
    	}
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.next = i.rb.f.nextMain
    	return i.next(i)
    }
    
    func nextASCIIString(i *Iter) []byte {
    	p := i.p + 1
    	if p >= i.rb.nsrc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/comp_test.go

    	}()
    	p.s1.y = 2
    	<-c
    }
    
    func TestNoRaceCompPtr2(t *testing.T) {
    	c := make(chan bool, 1)
    	p := Ptr{&P{}, &P{}}
    	go func() {
    		p.s1.x = 1
    		c <- true
    	}()
    	_ = p
    	<-c
    }
    
    func TestRaceCompPtr(t *testing.T) {
    	c := make(chan bool, 1)
    	p := Ptr{&P{}, &P{}}
    	go func() {
    		p.s2.x = 1
    		c <- true
    	}()
    	p.s2.x = 2
    	<-c
    }
    
    func TestRaceCompPtr2(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.3K bytes
    - Viewed (0)
  8. src/os/exec_plan9.go

    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    	return p.status
    }
    
    func (p *ProcessState) sysUsage() any {
    	return p.status
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue49043.go

    package p
    
    // The example from the issue.
    type (
    	N[P any] M /* ERROR "invalid recursive type" */ [P]
    	M[P any] N[P]
    )
    
    // A slightly more complicated case.
    type (
    	A[P any] B /* ERROR "invalid recursive type" */ [P]
    	B[P any] C[P]
    	C[P any] A[P]
    )
    
    // Confusing but valid (note that `type T *T` is valid).
    type (
    	N1[P any] *M1[P]
    	M1[P any] *N1[P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 512 bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256.go

    	t := NewP256Point()
    	p.Set(NewP256Point())
    	for i, byte := range scalar {
    		// No need to double on the first iteration, as p is the identity at
    		// this point, and [N]∞ = ∞.
    		if i != 0 {
    			p.Double(p)
    			p.Double(p)
    			p.Double(p)
    			p.Double(p)
    		}
    
    		windowValue := byte >> 4
    		table.Select(t, windowValue)
    		p.Add(p, t)
    
    		p.Double(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top