Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for Sel (0.05 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    DATA p256<>+0x20(SB)/8, $0x0c0d0e0f1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x28(SB)/8, $0x0c0d0e0f1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x30(SB)/8, $0x0000000010111213 // SEL 0  d1 d0  0
    DATA p256<>+0x38(SB)/8, $0x1415161700000000 // SEL 0  d1 d0  0
    DATA p256<>+0x40(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x48(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256mul<>+0x00(SB)/8, $0x00000000ffffffff // P256 original
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/sidecar/selector.go

    		}
    
    		sNs := rs.Metadata.FullName.Namespace
    		sel := labels.SelectorFromSet(s.WorkloadSelector.Labels)
    
    		foundPod := false
    		c.ForEach(gvk.Pod, func(rp *resource.Instance) bool {
    			pNs := rp.Metadata.FullName.Namespace
    			podLabels := labels.Set(rp.Metadata.Labels)
    
    			// Only attempt to match in the same namespace
    			if pNs != sNs {
    				return true
    			}
    
    			if sel.Matches(podLabels) {
    				foundPod = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/go/types/resolver_test.go

    						t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name)
    						return false
    					}
    					if _, ok := obj.(*PkgName); ok && uses[s.Sel] == nil {
    						t.Errorf("%s: unresolved selector %s", fset.Position(s.Sel.Pos()), s.Sel.Name)
    						return false
    					}
    					return false
    				}
    				return true
    			}
    			return true
    		})
    	}
    
    	for id, obj := range uses {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/walk.go

    // and omits nil-pointer checks for ptr.
    func boundedDotPtr(pos src.XPos, ptr ir.Node, field *types.Field) *ir.SelectorExpr {
    	sel := ir.NewSelectorExpr(pos, ir.ODOTPTR, ptr, field.Sym)
    	sel.Selection = field
    	sel.SetType(field.Type)
    	sel.SetTypecheck(1)
    	sel.SetBounded(true) // guaranteed not to fault
    	return sel
    }
    
    func runtimeField(name string, offset int64, typ *types.Type) *types.Field {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    // context.With{Cancel,Timeout,Deadline}.
    func isContextWithCancel(info *types.Info, n ast.Node) bool {
    	sel, ok := n.(*ast.SelectorExpr)
    	if !ok {
    		return false
    	}
    	switch sel.Sel.Name {
    	case "WithCancel", "WithTimeout", "WithDeadline":
    	default:
    		return false
    	}
    	if x, ok := sel.X.(*ast.Ident); ok {
    		if pkgname, ok := info.Uses[x].(*types.PkgName); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_s390x.s

    DATA p256<>+0x20(SB)/8, $0x0c0d0e0f1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x28(SB)/8, $0x0c0d0e0f1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x30(SB)/8, $0x0000000010111213 // SEL 0  d1 d0  0
    DATA p256<>+0x38(SB)/8, $0x1415161700000000 // SEL 0  d1 d0  0
    DATA p256<>+0x40(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x48(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    // isMethodExpr reports whether a call is to a MethodExpr.
    func isMethodExpr(info *types.Info, c *ast.CallExpr) bool {
    	s, ok := c.Fun.(*ast.SelectorExpr)
    	if !ok {
    		return false
    	}
    	sel := info.Selections[s]
    	return sel != nil && sel.Kind() == types.MethodExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pkg/test/framework/suite_test.go

    	g := NewWithT(t)
    
    	var runSkipped bool
    	runFn := func(ctx *suiteContext) int {
    		runSkipped = ctx.skipped
    		return 0
    	}
    
    	sel, err := label.ParseSelector("-customsetup")
    	g.Expect(err).To(BeNil())
    	settings := resource.DefaultSettings()
    	settings.Selector = sel
    
    	s := newTestSuite("tid", runFn, defaultExitFn, settingsFn(settings))
    	s.Label(label.CustomSetup)
    	s.Run()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/intervals.go

    	pv.i1, pv.i2 = i1, i2
    	pv.cur = pv.sel()
    	return pv.cur
    }
    
    // nxt advances the pairVisitor to the next interval by starting
    // position within the pair, returning an intWithIdx that describes
    // the interval.
    func (pv *pairVisitor) nxt() intWithIdx {
    	if pv.cur.pairIndex == 0 {
    		pv.i1pos++
    	} else {
    		pv.i2pos++
    	}
    	pv.cur = pv.sel()
    	return pv.cur
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/go/types/eval_test.go

    		}
    		switch expr := expr.(type) {
    		case *ast.Ident:
    			if obj, ok := info.Uses[expr]; ok {
    				return obj, nil
    			}
    		case *ast.SelectorExpr:
    			if sel, ok := info.Selections[expr]; ok {
    				return sel.Obj(), nil
    			}
    			if obj, ok := info.Uses[expr.Sel]; ok {
    				return obj, nil // qualified identifier
    			}
    		}
    		return nil, fmt.Errorf("no object for %s", str)
    	}
    
    	for _, group := range f.Comments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top