Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for Sel (0.04 sec)

  1. src/cmd/compile/internal/types2/check.go

    		selOrIdent = e.X
    	case *syntax.SelectorExpr, *syntax.Name:
    		selOrIdent = e
    	}
    	switch x := selOrIdent.(type) {
    	case *syntax.Name:
    		return x
    	case *syntax.SelectorExpr:
    		return x.Sel
    	}
    	panic("instantiated ident not found")
    }
    
    func (check *Checker) recordDef(id *syntax.Name, obj Object) {
    	assert(id != nil)
    	if m := check.Defs; m != nil {
    		m[id] = obj
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	needsUnsafe := false
    	f.walk(arg, ctxExpr, func(f *File, arg interface{}, context astContext) {
    		px, ok := arg.(*ast.Expr)
    		if !ok {
    			return
    		}
    		sel, ok := (*px).(*ast.SelectorExpr)
    		if ok {
    			if l, ok := sel.X.(*ast.Ident); !ok || l.Name != "C" {
    				return
    			}
    
    			for _, r := range f.Ref {
    				if r.Expr == px {
    					*px = p.rewriteName(f, r, addPosition)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    func (s *ambientTestServer) addPolicy(t *testing.T, name, ns string, selector map[string]string,
    	kind config.GroupVersionKind, modify func(controllers.Object),
    ) {
    	t.Helper()
    	var sel *v1beta1.WorkloadSelector
    	if selector != nil {
    		sel = &v1beta1.WorkloadSelector{
    			MatchLabels: selector,
    		}
    	}
    	switch kind {
    	case gvk.AuthorizationPolicy:
    		pol := &clientsecurityv1beta1.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/go/ast/filter.go

    // anonymous field, the result is nil.
    func fieldName(x Expr) *Ident {
    	switch t := x.(type) {
    	case *Ident:
    		return t
    	case *SelectorExpr:
    		if _, ok := t.X.(*Ident); ok {
    			return t.Sel
    		}
    	case *StarExpr:
    		return fieldName(t.X)
    	}
    	return nil
    }
    
    func filterFieldList(fields *FieldList, filter Filter, export bool) (removedFields bool) {
    	if fields == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption.go

    func (dc *DisruptionController) getPodsForPdb(pdb *policy.PodDisruptionBudget) ([]*v1.Pod, error) {
    	sel, err := metav1.LabelSelectorAsSelector(pdb.Spec.Selector)
    	if err != nil {
    		return []*v1.Pod{}, err
    	}
    	pods, err := dc.podLister.Pods(pdb.Namespace).List(sel)
    	if err != nil {
    		return []*v1.Pod{}, err
    	}
    	return pods, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_amd64.s

    #define zero_save (32*15 + 8 + 4)(SP)
    
    // func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    TEXT ·p256PointAddAffineAsm(SB),0,$512-48
    	// Move input to stack in order to free registers
    	MOVQ res+0(FP), AX
    	MOVQ in1+8(FP), BX
    	MOVQ in2+16(FP), CX
    	MOVQ sign+24(FP), DX
    	MOVQ sel+32(FP), t1
    	MOVQ zero+40(FP), t2
    
    	MOVOU (16*0)(BX), X0
    	MOVOU (16*1)(BX), X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  7. src/go/ast/ast.go

    		Rparen token.Pos // position of ")"
    	}
    
    	// A SelectorExpr node represents an expression followed by a selector.
    	SelectorExpr struct {
    		X   Expr   // expression
    		Sel *Ident // field selector
    	}
    
    	// An IndexExpr node represents an expression followed by an index.
    	IndexExpr struct {
    		X      Expr      // expression
    		Lbrack token.Pos // position of "["
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	var testMatchExpressions []metav1.LabelSelectorRequirement
    	for key, value := range labels {
    		sel := metav1.LabelSelectorRequirement{
    			Key:      key,
    			Operator: metav1.LabelSelectorOpIn,
    			Values:   []string{value},
    		}
    		testMatchExpressions = append(testMatchExpressions, sel)
    	}
    	return &apps.StatefulSet{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "StatefulSet",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_arm64.s

    #define u2(off) (32*11 + 8 + off)(RSP)
    
    // func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    TEXT ·p256PointAddAffineAsm(SB),0,$264-48
    	MOVD	in1+8(FP), a_ptr
    	MOVD	in2+16(FP), b_ptr
    	MOVD	sign+24(FP), hlp0
    	MOVD	sel+32(FP), hlp1
    	MOVD	zero+40(FP), t2
    
    	MOVD	$1, t0
    	CMP	$0, t2
    	CSEL	EQ, ZR, t0, t2
    	CMP	$0, hlp1
    	CSEL	EQ, ZR, t0, hlp1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver.go

    				// selectors to their cgo name. We must do the same here.
    				if pname, _ := obj.(*PkgName); pname != nil {
    					if pname.imported.cgo { // only set if Config.go115UsesCgo is set
    						name = "_Ctype_" + typ.Sel.Value
    					}
    				}
    			}
    			if name == "" {
    				return false, nil
    			}
    		default:
    			return false, nil
    		}
    
    		// name must denote an object found in the current package scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top