Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for Sel (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	}
    	// No easy way of making sure it's a *testing.T or *testing.B:
    	// ensure the name of the type matches.
    	if name, ok := ptr.X.(*ast.Ident); ok {
    		return name.Name == wantType
    	}
    	if sel, ok := ptr.X.(*ast.SelectorExpr); ok {
    		return sel.Sel.Name == wantType
    	}
    	return false
    }
    
    func lookup(pkg *types.Package, name string) []types.Object {
    	if o := pkg.Scope().Lookup(name); o != nil {
    		return []types.Object{o}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    		return a.serviceEntriesInfo(s, waypoint)
    	}
    }
    
    func (a *index) serviceEntriesInfo(s *networkingclient.ServiceEntry, w *Waypoint) []model.ServiceInfo {
    	sel := model.NewSelector(s.Spec.GetWorkloadSelector().GetLabels())
    	portNames := map[int32]model.ServicePortName{}
    	for _, p := range s.Spec.Ports {
    		portNames[int32(p.Number)] = model.ServicePortName{
    			PortName: p.Name,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/go/parser/parser_test.go

    		}
    
    		var sel *ast.SelectorExpr
    		ast.Inspect(f, func(n ast.Node) bool {
    			if n, ok := n.(*ast.SelectorExpr); ok {
    				sel = n
    			}
    			return true
    		})
    		if sel == nil {
    			t.Error("found no *ast.SelectorExpr")
    			continue
    		}
    		const wantSel = "&{fmt _}"
    		if fmt.Sprint(sel) != wantSel {
    			t.Errorf("found selector %s, want %s", sel, wantSel)
    			continue
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		if pol.Namespace == meshCfg.GetRootNamespace() && pol.Spec.Selector == nil {
    			return true
    		}
    		if pol.Namespace != ns {
    			return false
    		}
    		sel := pol.Spec.Selector
    		if sel == nil {
    			return true // No selector matches everything
    		}
    		return labels.Instance(sel.MatchLabels).SubsetOf(matchLabels)
    	}))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    		if x.mode == invalid {
    			return
    		}
    
    		base := derefStructPtr(x.typ)
    		sel := selx.Sel.Value
    		obj, index, indirect := lookupFieldOrMethod(base, false, check.pkg, sel, false)
    		switch obj.(type) {
    		case nil:
    			check.errorf(x, MissingFieldOrMethod, invalidArg+"%s has no single field %s", base, sel)
    			return
    		case *Func:
    			// TODO(gri) Using derefStructPtr may result in methods being found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    		if x.mode == invalid {
    			return
    		}
    
    		base := derefStructPtr(x.typ)
    		sel := selx.Sel.Name
    		obj, index, indirect := lookupFieldOrMethod(base, false, check.pkg, sel, false)
    		switch obj.(type) {
    		case nil:
    			check.errorf(x, MissingFieldOrMethod, invalidArg+"%s has no single field %s", base, sel)
    			return
    		case *Func:
    			// TODO(gri) Using derefStructPtr may result in methods being found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/go/types/exprstring.go

    		}
    		buf.WriteByte('}')
    
    	case *ast.ParenExpr:
    		buf.WriteByte('(')
    		WriteExpr(buf, x.X)
    		buf.WriteByte(')')
    
    	case *ast.SelectorExpr:
    		WriteExpr(buf, x.X)
    		buf.WriteByte('.')
    		buf.WriteString(x.Sel.Name)
    
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		ix := typeparams.UnpackIndexExpr(x)
    		WriteExpr(buf, ix.X)
    		buf.WriteByte('[')
    		writeExprList(buf, ix.Indices)
    		buf.WriteByte(']')
    
    	case *ast.SliceExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/typecheck.go

    	}
    	return t
    }
    
    // Lookdot looks up field or method n.Sel in the type t and returns the matching
    // field. It transforms the op of node n to ODOTINTER or ODOTMETH, if appropriate.
    // It also may add a StarExpr node to n.X as needed for access to non-pointer
    // methods. If dostrcmp is 0, it matches the field/method with the exact symbol
    // as n.Sel (appropriate for exported fields). If dostrcmp is 1, it matches by name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/expr.go

    		default:
    			if mt := Lookdot(n, t, 2); mt != nil && visible(mt.Sym) { // Case-insensitive lookup.
    				base.Errorf("%v undefined (type %v has no field or method %v, but does have %v)", n, n.X.Type(), n.Sel, mt.Sym)
    			} else {
    				base.Errorf("%v undefined (type %v has no field or method %v)", n, n.X.Type(), n.Sel)
    			}
    		}
    		n.SetType(nil)
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		switch fdecl.Name.Name {
    		case "m":
    			dm = def
    			ast.Inspect(fdecl.Body, func(n ast.Node) bool {
    				if call, ok := n.(*ast.CallExpr); ok {
    					sel := call.Fun.(*ast.SelectorExpr)
    					use := info.Uses[sel.Sel].(*Func)
    					selection := info.Selections[sel]
    					if selection.Kind() != MethodVal {
    						t.Errorf("Selection kind = %v, want %v", selection.Kind(), MethodVal)
    					}
    					if selection.Obj() != use {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top