Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for srcReg (0.17 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGZERO
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS32
    			if top == nil {
    				top = p
    			}
    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGTMP
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS33
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    			// of narrowing conversions).
    			x = e.p.NewValue1(pos, OpStoreReg, loc.(LocalSlot).Type, x)
    		}
    	} else {
    		// Emit move from src to dst.
    		_, srcReg := src.(*Register)
    		if srcReg {
    			if dstReg {
    				x = e.p.NewValue1(pos, OpCopy, c.Type, c)
    			} else {
    				x = e.p.NewValue1(pos, OpStoreReg, loc.(LocalSlot).Type, c)
    			}
    		} else {
    			if dstReg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/html/template/content.go

    	URL string
    
    	// Srcset encapsulates a known safe srcset attribute
    	// (see https://w3c.github.io/html/semantics-embedded-content.html#element-attrdef-img-srcset).
    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	Srcset string
    )
    
    type contentType uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. pkg/proto/merge/merge.go

    	for _, opt := range opts {
    		mo = opt(mo)
    	}
    	dstMsg, srcMsg := dst.ProtoReflect(), src.ProtoReflect()
    	if dstMsg.Descriptor() != srcMsg.Descriptor() {
    		if got, want := dstMsg.Descriptor().FullName(), srcMsg.Descriptor().FullName(); got != want {
    			panic(fmt.Sprintf("descriptor mismatch: %v != %v", got, want))
    		}
    		panic("descriptor mismatch")
    	}
    	mo.mergeMessage(dstMsg, srcMsg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. tools/docker-builder/builder/tar.go

    	"time"
    )
    
    func WriteArchiveFromFiles(base string, files map[string]string, out io.Writer) error {
    	tw := tar.NewWriter(out)
    	defer tw.Close()
    
    	for dest, srcRel := range files {
    		src := srcRel
    		if !filepath.IsAbs(src) {
    			src = filepath.Join(base, srcRel)
    		}
    		i, err := os.Stat(src)
    		if err != nil {
    			return err
    		}
    		isDir := i.IsDir()
    		ts := src
    		write := func(src string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 17:01:46 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ld.go

     */
    func addlibpath(ctxt *Link, srcref, objref, file, pkg, shlib string, fingerprint goobj.FingerprintType) *sym.Library {
    	if l := ctxt.LibraryByPkg[pkg]; l != nil {
    		return l
    	}
    
    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("addlibpath: srcref: %s objref: %s file: %s pkg: %s shlib: %s fingerprint: %x\n", srcref, objref, file, pkg, shlib, fingerprint)
    	}
    
    	l := &sym.Library{}
    	ctxt.LibraryByPkg[pkg] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. cmd/bootstrap-peer-server.go

    func (client *bootstrapRESTClient) Verify(ctx context.Context, srcCfg *ServerSystemConfig) (err error) {
    	if newObjectLayerFn() != nil {
    		return nil
    	}
    
    	recvCfg, err := serverVerifyHandler.Call(ctx, client.gridConn, grid.NewMSS())
    	if err != nil {
    		return err
    	}
    	// We do not need the response after returning.
    	defer serverVerifyHandler.PutResponse(recvCfg)
    
    	return srcCfg.Diff(recvCfg)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage.go

    		CreateStrategy:      svcreg.Strategy,
    		UpdateStrategy:      svcreg.Strategy,
    		DeleteStrategy:      svcreg.Strategy,
    		ResetFieldsStrategy: svcreg.Strategy,
    
    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{
    		RESTOptions: optsGetter,
    		AttrFunc:    svcreg.GetAttrs,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/html/template/content_test.go

    		HTML(`Hello, <b>World</b> &amp;tc!`),
    		HTMLAttr(` dir="ltr"`),
    		JS(`c && alert("Hello, World!");`),
    		JSStr(`Hello, World & O'Reilly\u0021`),
    		URL(`greeting=H%69,&addressee=(World)`),
    		Srcset(`greeting=H%69,&addressee=(World) 2x, https://golang.org/favicon.ico 500.5w`),
    		URL(`,foo/,`),
    	}
    
    	// For each content sensitive escaper, see how it does on
    	// each of the typed strings above.
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/sym/library.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sym
    
    import "cmd/internal/goobj"
    
    type Library struct {
    	Objref      string
    	Srcref      string
    	File        string
    	Pkg         string
    	Shlib       string
    	Fingerprint goobj.FingerprintType
    	Autolib     []goobj.ImportedPkg
    	Imports     []*Library
    	Main        bool
    	Units       []*CompilationUnit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 18:32:23 UTC 2020
    - 651 bytes
    - Viewed (0)
Back to top