Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for popPrefix (0.63 sec)

  1. src/encoding/xml/marshal.go

    	delete(p.attrPrefix, p.attrNS[prefix])
    	delete(p.attrNS, prefix)
    }
    
    func (p *printer) markPrefix() {
    	p.prefixes = append(p.prefixes, "")
    }
    
    func (p *printer) popPrefix() {
    	for len(p.prefixes) > 0 {
    		prefix := p.prefixes[len(p.prefixes)-1]
    		p.prefixes = p.prefixes[:len(p.prefixes)-1]
    		if prefix == "" {
    			break
    		}
    		p.deleteAttrPrefix(prefix)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                "ge-plugin"
            );
    
            String gitRef
            String urlTemplate
            String propPrefix
    
            CI(String gitRef, String urlTemplate, String propPrefix) {
                this.gitRef = gitRef
                this.urlTemplate = urlTemplate
                this.propPrefix = propPrefix
            }
    
            String getUrl() {
                return String.format(urlTemplate, gitRef)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// We have transformed the first pSrc bytes of the input s to become pDst
    	// transformed bytes. Those transformed bytes are discontiguous: the first
    	// pPrefix of them equal s[:pPrefix] and the last nDst of them equal
    	// dst[:nDst]. We copy them around, into a new dst buffer if necessary, so
    	// that they become one contiguous slice: dst[:pDst].
    	if pPrefix != 0 {
    		newDst := dst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/transform/transform.go

    	// We have transformed the first pSrc bytes of the input s to become pDst
    	// transformed bytes. Those transformed bytes are discontiguous: the first
    	// pPrefix of them equal s[:pPrefix] and the last nDst of them equal
    	// dst[:nDst]. We copy them around, into a new dst buffer if necessary, so
    	// that they become one contiguous slice: dst[:pDst].
    	if pPrefix != 0 {
    		newDst := dst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo.go

    		subdir += "/"
    	}
    	haveLICENSE := false
    	topPrefix := ""
    	for _, zf := range zr.File {
    		if topPrefix == "" {
    			i := strings.Index(zf.Name, "/")
    			if i < 0 {
    				return fmt.Errorf("missing top-level directory prefix")
    			}
    			topPrefix = zf.Name[:i+1]
    		}
    		var name string
    		var found bool
    		if name, found = strings.CutPrefix(zf.Name, topPrefix); !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top