Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Sel (0.04 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. 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)
  3. 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)
  4. src/cmd/compile/internal/types2/api_test.go

    		switch fdecl.Name.Value {
    		case "m":
    			dm = def
    			syntax.Inspect(fdecl.Body, func(n syntax.Node) bool {
    				if call, ok := n.(*syntax.CallExpr); ok {
    					sel := call.Fun.(*syntax.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: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    		defer un(trace(p, "TypeName"))
    	}
    
    	if ident == nil {
    		ident = p.parseIdent()
    	}
    
    	if p.tok == token.PERIOD {
    		// ident is a package name
    		p.next()
    		sel := p.parseIdent()
    		return &ast.SelectorExpr{X: ident, Sel: sel}
    	}
    
    	return ident
    }
    
    // "[" has already been consumed, and lbrack is its position.
    // If len != nil it is the already consumed array length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    						}, this))
    					.bind("dblclick.jstree", function (event) {
    						var sel;
    						if(document.selection && document.selection.empty) { document.selection.empty(); }
    						else {
    							if(window.getSelection) {
    								sel = window.getSelection();
    								try {
    									sel.removeAllRanges();
    									sel.collapse();
    								} catch (err) { }
    							}
    						}
    					});
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    	p.expr1(x.X, token.HighestPrec, depth)
    	p.print(token.PERIOD)
    	if line := p.lineFor(x.Sel.Pos()); p.pos.IsValid() && p.pos.Line < line {
    		p.print(indent, newline)
    		p.setPos(x.Sel.Pos())
    		p.print(x.Sel)
    		if !isMethod {
    			p.print(unindent)
    		}
    		return true
    	}
    	p.setPos(x.Sel.Pos())
    	p.print(x.Sel)
    	return false
    }
    
    func (p *printer) expr0(x ast.Expr, depth int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. 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)
  9. src/go/printer/testdata/parser.go

    	ident := p.parseIdent()
    	// don't resolve ident yet - it may be a parameter or field name
    
    	if p.tok == token.PERIOD {
    		// ident is a package name
    		p.next()
    		p.resolve(ident)
    		sel := p.parseIdent()
    		return &ast.SelectorExpr{ident, sel}
    	}
    
    	return ident
    }
    
    func (p *parser) parseArrayType(ellipsisOk bool) ast.Expr {
    	if p.trace {
    		defer un(trace(p, "ArrayType"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. 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)
Back to top