Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for popPrefix (0.21 sec)

  1. 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)
  2. 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)
  3. 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