Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 335 for p$index (0.19 sec)

  1. src/cmd/internal/src/xpos.go

    // For positions with different bases, ordering is by base index.
    func (p XPos) Before(q XPos) bool {
    	n, m := p.index, q.index
    	return n < m || n == m && p.lico < q.lico
    }
    
    // SameFile reports whether p and q are positions in the same file.
    func (p XPos) SameFile(q XPos) bool {
    	return p.index == q.index
    }
    
    // SameFileAndLine reports whether p and q are positions on the same line in the same file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/trie13.0.0.go

    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		p := index
    		return append(b, mappings[mappingIndex[p]:mappingIndex[p+1]]...)
    	}
    	b = append(b, s...)
    	if c&inlineXOR == inlineXOR {
    		// TODO: support and handle two-byte inline masks
    		b[len(b)-1] ^= byte(index)
    	} else {
    		for p := len(b) - int(xorData[index]); p < len(b); p++ {
    			index++
    			b[p] ^= xorData[index]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 872 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/webAppJava6/src/main/webapp/index.html

    <p>index page.</p>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    func (p Properties) isInert() bool {
    	return p.flags&qcInfoMask == 0 && p.ccc == 0
    }
    
    func (p Properties) multiSegment() bool {
    	return p.index >= firstMulti && p.index < endMulti
    }
    
    func (p Properties) nLeadingNonStarters() uint8 {
    	return p.nLead
    }
    
    func (p Properties) nTrailingNonStarters() uint8 {
    	return uint8(p.flags & 0x03)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path_test.go

    		{
    			func(p *Path) *Path { return p.Child("second") },
    			"root.first.second",
    		},
    		{
    			func(p *Path) *Path { return p.Index(0) },
    			"root.first.second[0]",
    		},
    		{
    			func(p *Path) *Path { return p.Child("third") },
    			"root.first.second[0].third",
    		},
    		{
    			func(p *Path) *Path { return p.Index(93) },
    			"root.first.second[0].third[93]",
    		},
    		{
    			func(p *Path) *Path { return p.parent },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    func (p Properties) isInert() bool {
    	return p.flags&qcInfoMask == 0 && p.ccc == 0
    }
    
    func (p Properties) multiSegment() bool {
    	return p.index >= firstMulti && p.index < endMulti
    }
    
    func (p Properties) nLeadingNonStarters() uint8 {
    	return p.nLead
    }
    
    func (p Properties) nTrailingNonStarters() uint8 {
    	return uint8(p.flags & 0x03)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/revisions/tag_watcher.go

    		p.notifyHandlers()
    		return nil
    	}))
    	p.webhooks = kclient.NewFiltered[*admissionregistrationv1.MutatingWebhookConfiguration](client, kubetypes.Filter{
    		ObjectFilter: kubetypes.NewStaticObjectFilter(isTagWebhook),
    	})
    	p.index = kclient.CreateIndexWithDelegate[string, *admissionregistrationv1.MutatingWebhookConfiguration](p.webhooks,
    		func(o *admissionregistrationv1.MutatingWebhookConfiguration) []string {
    			rev := o.GetLabels()[label.IoIstioRev.Name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Macedonian           Tag = Tag{language: mkIndex, locale: mkIndex}
    	Malayalam            Tag = Tag{language: mlIndex, locale: mlIndex}
    	Mongolian            Tag = Tag{language: mnIndex, locale: mnIndex}
    	Marathi              Tag = Tag{language: mrIndex, locale: mrIndex}
    	Malay                Tag = Tag{language: msIndex, locale: msIndex}
    	Burmese              Tag = Tag{language: myIndex, locale: myIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/trie12.0.0.go

    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		s := mappings[index:]
    		return append(b, s[1:s[0]+1]...)
    	}
    	b = append(b, s...)
    	if c&inlineXOR == inlineXOR {
    		// TODO: support and handle two-byte inline masks
    		b[len(b)-1] ^= byte(index)
    	} else {
    		for p := len(b) - int(xorData[index]); p < len(b); p++ {
    			index++
    			b[p] ^= xorData[index]
    		}
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 852 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (p *Parser) checkAdvance(sec section) error {
    	if p.section < sec {
    		return ErrNotStarted
    	}
    	if p.section > sec {
    		return ErrSectionDone
    	}
    	p.resHeaderValid = false
    	if p.index == int(p.header.count(sec)) {
    		p.index = 0
    		p.section++
    		return ErrSectionDone
    	}
    	return nil
    }
    
    func (p *Parser) resource(sec section) (Resource, error) {
    	var r Resource
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top