Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for popPrefix (0.11 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/toolchain.go

    		return nil, err
    	}
    	versions.Origin = nil
    	var list []string
    	have := make(map[string]bool)
    	goPrefix := ""
    	if r.path == "toolchain" {
    		goPrefix = "go"
    	}
    	for _, v := range versions.List {
    		v, ok := dlToGo(v)
    		if !ok {
    			continue
    		}
    		if !have[v] {
    			have[v] = true
    			list = append(list, goPrefix+v)
    		}
    	}
    
    	// Always include our own version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			Storage:        s,
    			Versioner:      storage.APIObjectVersioner{},
    			GroupResource:  schema.GroupResource{Resource: "pods"},
    			ResourcePrefix: podPrefix,
    			KeyFunc:        func(obj runtime.Object) (string, error) { return storage.NoNamespaceKeyFunc(podPrefix, obj) },
    			GetAttrsFunc:   getPodAttrs,
    			NewFunc:        newFunc,
    			NewListFunc:    newListFunc,
    			Codec:          sc.Codec,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top