Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for allocValue (0.13 sec)

  1. tests/integration/security/authz_test.go

    		ConditionallyTo(echotest.NoSelfCalls)
    }
    
    type allowValue bool
    
    func (v allowValue) Bool() bool {
    	return bool(v)
    }
    
    func (v allowValue) String() string {
    	if v {
    		return "allow"
    	}
    	return "deny"
    }
    
    type authzTest struct {
    	from   echo.Instance
    	opts   echo.CallOptions
    	allow  allowValue
    	prefix string
    }
    
    func newAuthzTest() *authzTest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top