Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 278 for Nname (0.19 sec)

  1. src/internal/xcoff/file.go

    }
    
    // Section returns the first section with the given name, or nil if no such
    // section exists.
    // Xcoff have section's name limited to 8 bytes. Some sections like .gosymtab
    // can be trunked but this method will still find them.
    func (f *File) Section(name string) *Section {
    	for _, s := range f.Sections {
    		if s.Name == name || (len(name) > 8 && s.Name == name[:8]) {
    			return s
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    					HealthChecks: []healthz.HealthChecker{
    						&mockHealthChecker{
    							pluginName: "invalid\nname",
    							err:        nil,
    						},
    					},
    					EncryptionFileContentHash: "anything different",
    				}, nil
    			},
    		},
    		{
    			name:                    "when config is not updated transformers are closed correctly",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    func shouldTrack(n *ir.Name) bool {
    	return (n.Class == ir.PAUTO && n.Esc() != ir.EscHeap || n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT) && n.Type().HasPointers()
    }
    
    // getvariables returns the list of on-stack variables that we need to track
    // and a map for looking up indices by *Node.
    func getvariables(fn *ir.Func) ([]*ir.Name, map[*ir.Name]int32) {
    	var vars []*ir.Name
    	for _, n := range fn.Dcl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    	}
    
    	if base.Debug.DumpPtrs != 0 && n.Name() != nil && n.Name().Defn != nil {
    		// Useful to see where Defn is set and what node it points to
    		fmt.Fprintf(w, " defn(%p)", n.Name().Defn)
    	}
    
    	if base.Debug.DumpPtrs != 0 && n.Name() != nil && n.Name().Curfn != nil {
    		// Useful to see where Defn is set and what node it points to
    		fmt.Fprintf(w, " curfn(%p)", n.Name().Curfn)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    		return CMPeq
    
    	case TSSA:
    		tname := t.extra.(string)
    		xname := x.extra.(string)
    		// desire fast sorting, not pretty sorting.
    		if len(tname) == len(xname) {
    			if tname == xname {
    				return CMPeq
    			}
    			if tname < xname {
    				return CMPlt
    			}
    			return CMPgt
    		}
    		if len(tname) > len(xname) {
    			return CMPgt
    		}
    		return CMPlt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/fmt.go

    	}
    }
    
    // SplitVargenSuffix returns name split into a base string and a ·N
    // suffix, if any.
    func SplitVargenSuffix(name string) (base, suffix string) {
    	i := len(name)
    	for i > 0 && name[i-1] >= '0' && name[i-1] <= '9' {
    		i--
    	}
    	const dot = "·"
    	if i >= len(dot) && name[i-len(dot):i] == dot {
    		i -= len(dot)
    		return name[:i], name[i:]
    	}
    	return name, ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    func StaticLoc(n ir.Node) (name *ir.Name, offset int64, ok bool) {
    	if n == nil {
    		return nil, 0, false
    	}
    
    	switch n.Op() {
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		return n, 0, true
    
    	case ir.OMETHEXPR:
    		n := n.(*ir.SelectorExpr)
    		return StaticLoc(n.FuncName())
    
    	case ir.ODOT:
    		n := n.(*ir.SelectorExpr)
    		if name, offset, ok = StaticLoc(n.X); !ok {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/convert.go

    		xe := ir.NewIndexExpr(base.Pos, staticuint64s, index)
    		xe.SetBounded(true)
    		value = xe
    	case n.Op() == ir.ONAME && n.(*ir.Name).Class == ir.PEXTERN && n.(*ir.Name).Readonly():
    		// n is a readonly global; use it directly.
    		value = n
    	case conv.Esc() == ir.EscNone && fromType.Size() <= 1024:
    		// n does not escape. Use a stack temporary initialized to n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/assign.go

    			case *ir.SelectorExpr:
    				if ll.Op() == ir.ODOT {
    					l = ll.X
    					continue
    				}
    			}
    			break
    		}
    
    		var name *ir.Name
    		switch l.Op() {
    		default:
    			base.Fatalf("unexpected lvalue %v", l.Op())
    		case ir.ONAME:
    			name = l.(*ir.Name)
    		case ir.OINDEX, ir.OINDEXMAP:
    			l := l.(*ir.IndexExpr)
    			save(&l.X)
    			save(&l.Index)
    		case ir.ODEREF:
    			l := l.(*ir.StarExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    			ecsj := EncodeCallSiteKey(sl[j])
    			return ecsi < ecsj
    		})
    
    		mkname := func(fn *ir.Func) string {
    			var n string
    			if fn == nil || fn.Nname == nil {
    				return "<nil>"
    			}
    			if fn.Sym().Pkg == types.LocalPkg {
    				n = "·" + fn.Sym().Name
    			} else {
    				n = ir.PkgFuncName(fn)
    			}
    			// don't try to print super-long names
    			if len(n) <= 64 {
    				return n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top