Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 319 for Sname (0.07 sec)

  1. src/cmd/link/internal/ld/data.go

    				return isz == 0 // 0-sized < zerobase
    			}
    			if checkSize {
    				if isz != jsz {
    					return isz < jsz
    				}
    			} else {
    				iname := sl[i].name
    				jname := sl[j].name
    				if iname != jname {
    					return iname < jname
    				}
    			}
    			return si < sj
    		})
    	} else {
    		// PCLNTAB was built internally, and already has the proper order.
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/image/draw/draw_test.go

    		"floyd-steinberg": FloydSteinberg,
    	}
    	sources := map[string]image.Image{
    		"uniform":  &image.Uniform{color.RGBA{0xff, 0x7f, 0xff, 0xff}},
    		"video001": video001,
    	}
    
    	for dName, d := range drawers {
    	loop:
    		for sName, src := range sources {
    			dst0 := image.NewPaletted(b, cgaPalette)
    			dst1 := image.NewPaletted(b, cgaPalette)
    			d.Draw(dst0, b, src, image.Point{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    // type with the specified name.
    func (d *dwctxt) find(name string) loader.Sym {
    	return d.tmap[name]
    }
    
    func (d *dwctxt) mustFind(name string) loader.Sym {
    	r := d.find(name)
    	if r == 0 {
    		Exitf("dwarf find: cannot find %s", name)
    	}
    	return r
    }
    
    func (d *dwctxt) adddwarfref(sb *loader.SymbolBuilder, t loader.Sym, size int) {
    	switch size {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    		return f.sectNameToScnum[".text"]
    	case &Segdata:
    		if sect.Name == ".noptrbss" || sect.Name == ".bss" {
    			return f.sectNameToScnum[".bss"]
    		}
    		if sect.Name == ".tbss" {
    			return f.sectNameToScnum[".tbss"]
    		}
    		return f.sectNameToScnum[".data"]
    	case &Segdwarf:
    		name, _ := xcoffGetDwarfSubtype(sect.Name)
    		return f.sectNameToScnum[name]
    	case &Segrelrodata:
    		return f.sectNameToScnum[".data"]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    		osym := r.Sym(i)
    		var name string
    		var v int
    		if kind != hashed64Def && kind != hashedDef { // we don't need the name, etc. for hashed symbols
    			name = osym.Name(r.Reader)
    			v = abiToVer(osym.ABI(), r.version)
    		}
    		gi := st.addSym(name, v, r, i, kind, osym)
    		r.syms[i] = gi
    		if kind == nonPkgDef && osym.IsLinkname() && r.DataSize(i) == 0 && strings.Contains(name, ".") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    		if _, err := os.Stat(pname); err == nil {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    	}
    
    	if name == "runtime" {
    		Exitf("error: unable to find runtime.a")
    	}
    	ctxt.Logf("warning: unable to find %s.a\n", name)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K 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