Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for pname (0.05 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/SettingsBuilder.groovy

                settingsFile << """
                    rootProject.name = '$rootProjectName'
                """
                includes.each { pName ->
                    settingsFile << """
                    include '$pName'
                """
                }
                includeBuilds.each { pName ->
                    settingsFile << """
                    includeBuild '$pName'
                """
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ld.go

    func findlib(ctxt *Link, lib string) (string, bool) {
    	name := path.Clean(lib)
    
    	var pname string
    	isshlib := false
    
    	if ctxt.linkShared && ctxt.PackageShlib[name] != "" {
    		pname = ctxt.PackageShlib[name]
    		isshlib = true
    	} else if ctxt.PackageFile != nil {
    		pname = ctxt.PackageFile[name]
    		if pname == "" {
    			ctxt.Logf("cannot find package %s (using -importcfg)\n", name)
    			return "", false
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    		t.Fatalf("os.WriteFile(%s) failed: %v", path, err)
    	}
    }
    
    func writePkgConfig(t *testing.T, outdir, tag, ppath, pname string, gran string, mpath string) string {
    	incfg := filepath.Join(outdir, tag+"incfg.txt")
    	outcfg := filepath.Join(outdir, "outcfg.txt")
    	p := covcmd.CoverPkgConfig{
    		PkgPath:      ppath,
    		PkgName:      pname,
    		Granularity:  gran,
    		OutConfig:    outcfg,
    		EmitMetaFile: mpath,
    	}
    	data, err := json.Marshal(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    				Ports:     []v1.EndpointPort{{Port: 8080}},
    			}}},
    	}
    
    	// Test PrintObj() success.
    	for pName, p := range genericPrinters {
    		for oName, obj := range objects {
    			b := &bytes.Buffer{}
    			if err := p.PrintObj(obj, b); err != nil {
    				t.Errorf("printer '%v', object '%v'; error: '%v'", pName, oName, err)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/pos.go

    //
    // If p and q are in different files, p is before q if the filename
    // of p sorts lexicographically before the filename of q.
    func (p Pos) Cmp(q Pos) int {
    	pname := p.RelFilename()
    	qname := q.RelFilename()
    	switch {
    	case pname < qname:
    		return -1
    	case pname > qname:
    		return +1
    	}
    
    	pline := p.Line()
    	qline := q.Line()
    	switch {
    	case pline < qline:
    		return -1
    	case pline > qline:
    		return +1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ar.go

    			if l <= 0 {
    				Exitf("%s missing archive entry at offset %d", name, off)
    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    			h := ldobj(ctxt, f, &libar, l, pname, name)
    			if h.ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/net/http/filetransport_test.go

    	}
    }
    
    func TestFileTransport(t *testing.T) {
    	check := checker(t)
    
    	dname := t.TempDir()
    	fname := filepath.Join(dname, "foo.txt")
    	err := os.WriteFile(fname, []byte("Bar"), 0644)
    	check("WriteFile", err)
    	defer os.Remove(fname)
    
    	tr := &Transport{}
    	tr.RegisterProtocol("file", NewFileTransport(Dir(dname)))
    	c := &Client{Transport: tr}
    
    	fooURLs := []string{"file:///foo.txt", "file://../foo.txt"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		name = name[:maxNameLen-len(bad)] + bad
    	}
    	return name
    }
    
    // DecodeStack expands the (compressed) stack encoded in the counter name.
    func DecodeStack(ename string) string {
    	if !strings.Contains(ename, "\n") {
    		return ename // not a stack counter
    	}
    	lines := strings.Split(ename, "\n")
    	var lastPath string // empty or ends with .
    	for i, line := range lines {
    		path, rest := cutLastDot(line)
    		if len(path) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. releasenotes/notes/external-name.yaml

          that points to `example.com`. This is implemented by a DNS `CNAME` redirect.
          
          In Istio, the implementation of `ExternalName`, historically, was substantially different. Each `ExternalName` represented its own
          service, and traffic matching the service was sent to the configured DNS name.
          
          This caused a few issues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top