Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IsItab (0.11 sec)

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

    				convertWeakToStrong := false
    				// When build with "-linkshared", we can't tell if the
    				// interface method in itab will be used or not.
    				// Ignore the weak attribute.
    				if d.ctxt.linkShared && d.ldr.IsItab(symIdx) {
    					convertWeakToStrong = true
    				}
    				// If the program uses plugins, we can no longer treat
    				// relocs from pkg init functions to outlined map init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/objfile.go

    func (s *Sym) IsGoType() bool      { return s.Flag()&SymFlagGoType != 0 }
    func (s *Sym) UsedInIface() bool   { return s.Flag2()&SymFlagUsedInIface != 0 }
    func (s *Sym) IsItab() bool        { return s.Flag2()&SymFlagItab != 0 }
    func (s *Sym) IsDict() bool        { return s.Flag2()&SymFlagDict != 0 }
    func (s *Sym) IsPkgInit() bool     { return s.Flag2()&SymFlagPkgInit != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    	if resultNameTab != nil {
    		csa.rescoreBasedOnCallResultUses(fn, resultNameTab, cstab)
    	}
    
    	disableDebugTrace()
    
    	if ic != nil && callSiteTab != nil {
    		// Integrate the calls from this cstab into the table for the caller.
    		if err := callSiteTab.merge(cstab); err != nil {
    			base.FatalfAt(ic.Pos(), "%v", err)
    		}
    	} else {
    		callSiteTab = cstab
    	}
    }
    
    // ScoreCallsCleanup resets the state of the callsite cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    }
    
    var (
    	escQuot = []byte(""") // shorter than """
    	escApos = []byte("'") // shorter than "'"
    	escAmp  = []byte("&")
    	escLT   = []byte("<")
    	escGT   = []byte(">")
    	escTab  = []byte("	")
    	escNL   = []byte("
")
    	escCR   = []byte("
")
    	escFFFD = []byte("\uFFFD") // Unicode replacement character
    )
    
    // EscapeText writes to w the properly escaped XML equivalent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    		return
    	}
    
    	// TODO: This causes allocations, but escape analysis doesn't really show the cause.
    	// If another faithful engineer wants to take a stab, feel free.
    	go func(m message) {
    		var start time.Time
    		if m.DeadlineMS > 0 {
    			start = time.Now()
    		}
    		var b []byte
    		var err *RemoteErr
    		func() {
    			defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top