Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ruleInvalid (0.53 sec)

  1. src/vendor/golang.org/x/text/secure/bidirule/bidirule.go

    		// EN, ES, CS, ET, ON, BN, or NSM are allowed.
    		// We exclude the entries from [2.6].
    		{ruleLTR, 1<<bidi.ES | 1<<bidi.CS | 1<<bidi.ET | 1<<bidi.ON | 1<<bidi.BN},
    	},
    	ruleInvalid: {
    		{ruleInvalid, 0},
    		{ruleInvalid, 0},
    	},
    }
    
    // [2.4] In an RTL label, if an EN is present, no AN may be present, and
    // vice versa.
    const exclusiveRTL = uint16(1<<bidi.EN | 1<<bidi.AN)
    
    // From RFC 5893
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/errors.go

    	// provided (e.g. empty strings, null values, or empty arrays).  See
    	// Required().
    	ErrorTypeRequired ErrorType = "RuleRequired"
    	// ErrorTypeInvalid is used to report malformed values
    	ErrorTypeInvalid ErrorType = "RuleInvalid"
    	// ErrorTypeInternal is used to report other errors that are not related
    	// to user input.  See InternalError().
    	ErrorTypeInternal ErrorType = "InternalError"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top