Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for Nname (0.05 sec)

  1. src/cmd/compile/internal/ir/func.go

    				sym = fn.Sym().Pkg.LookupNum(prefix, i)
    			}
    
    			name := NewNameAt(param.Pos, sym, param.Type)
    			name.Class = ctxt
    			name.Curfn = fn
    			fn.Dcl[offset+i] = name
    
    			if setNname {
    				param.Nname = name
    			}
    		}
    	}
    
    	sig := fn.Type()
    	params := sig.RecvParams()
    	results := sig.Results()
    
    	fn.Dcl = make([]*Name, len(params)+len(results))
    	declareParams(params, PPARAM, "~p", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/nowb.go

    		return
    	}
    	n := nn.(*ir.CallExpr)
    	if n.Fun == nil || n.Fun.Op() != ir.ONAME {
    		return
    	}
    	fn := n.Fun.(*ir.Name)
    	if fn.Class != ir.PFUNC || fn.Defn == nil {
    		return
    	}
    	if types.RuntimeSymName(fn.Sym()) != "systemstack" {
    		return
    	}
    
    	var callee *ir.Func
    	arg := n.Args[0]
    	switch arg.Op() {
    	case ir.ONAME:
    		arg := arg.(*ir.Name)
    		callee = arg.Defn.(*ir.Func)
    	case ir.OCLOSURE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. operator/pkg/compare/compare.go

    					return nil, fmt.Errorf("failed to split the old name,"+
    						" length != 3: %v", name)
    				}
    				toList := strings.Split(toPat, ":")
    				if len(toList) != 3 {
    					return nil, fmt.Errorf("failed to split the rename-to string,"+
    						" length != 3: %v", toPat)
    				}
    
    				// Use the old name if toList has "*" or ""
    				// Otherwise, use the name in toList
    				newList := make([]string, 3)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/node_matchers_test.cc

          "expected name: blah\n\t\nexpected name blah but found placeholder_a");
      EXPECT_EQ(
          Explain(add.node(), NodeWith(Inputs(_, Out(NodeWith(Name("blah")))))),
          "\ninput 1 does not match expected:\nname: blah, \nsource does not match "
          "expected name: blah\n\t\nexpected name blah but found placeholder_b");
    }
    
    TEST(NodeMatchers, CheckControlDependence) {
      Scope root = Scope::NewRootScope().ExitOnError();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    		}
    		wfs[i].Offset = p.FrameOffset(result)
    	}
    	return wfs
    }
    
    // setupWasmABI calculates the params and results in terms of WebAssembly values for the given function.
    func setupWasmABI(f *ir.Func) {
    	wi := obj.WasmImport{
    		Module: f.WasmImport.Module,
    		Name:   f.WasmImport.Name,
    	}
    	if wi.Module == wasm.GojsModule {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top