Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for assertGet (0.13 sec)

  1. src/crypto/x509/name_constraints_test.go

    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    			ekus: []string{"email"},
    		},
    		requestedEKUs: []ExtKeyUsage{ExtKeyUsageClientAuth, ExtKeyUsageEmailProtection},
    	},
    
    	// #81: EKUs that are not asserted in VerifyOpts are not required to be
    	// nested.
    	{
    		roots: make([]constraintsSpec, 1),
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ekus: []string{"serverAuth"},
    				},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    	// A TypeAssertExpr node represents an expression followed by a
    	// type assertion.
    	//
    	TypeAssertExpr struct {
    		X      Expr      // expression
    		Lparen token.Pos // position of "("
    		Type   Expr      // asserted type; nil means type switch X.(type)
    		Rparen token.Pos // position of ")"
    	}
    
    	// A CallExpr node represents an expression followed by an argument list.
    	CallExpr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    		o.stmt(as)
    
    		// Emit eval+insert of dynamic entries, one at a time.
    		for _, r := range dynamics {
    			lhs := typecheck.AssignExpr(ir.NewIndexExpr(base.Pos, m, r.Key)).(*ir.IndexExpr)
    			base.AssertfAt(lhs.Op() == ir.OINDEXMAP, lhs.Pos(), "want OINDEXMAP, have %+v", lhs)
    			lhs.RType = n.RType
    
    			as := ir.NewAssignStmt(base.Pos, lhs, r.Value)
    			typecheck.Stmt(as)
    			o.stmt(as)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top