Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for Hyphen (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/version/version_test.go

    		// "[pre-release] identifiers MUST comprise only ASCII alphanumerics and hyphen"
    		"1.2.3-/",
    		// "[pre-release] identifiers MUST NOT be empty"
    		"1.2.3-",
    		"1.2.3-.",
    		"1.2.3-foo.",
    		"1.2.3-.foo",
    		// "Numeric [pre-release] identifiers MUST NOT include leading zeroes"
    		"1.2.3-01",
    		// "[build metadata] identifiers MUST comprise only ASCII alphanumerics and hyphen"
    		"1.2.3+/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CaseFormat.java

     * non-ASCII input.
     *
     * @author Mike Bostock
     * @since 1.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum CaseFormat {
      /** Hyphenated variable naming convention, e.g., "lower-hyphen". */
      LOWER_HYPHEN(CharMatcher.is('-'), "-") {
        @Override
        String normalizeWord(String word) {
          return Ascii.toLowerCase(word);
        }
    
        @Override
        String convert(CaseFormat format, String s) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/net/dnsclient.go

    	// character is a dot.
    	l := len(s)
    	if l == 0 || l > 254 || l == 254 && s[l-1] != '.' {
    		return false
    	}
    
    	last := byte('.')
    	nonNumeric := false // true once we've seen a letter or hyphen
    	partlen := 0
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		switch {
    		default:
    			return false
    		case 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || c == '_':
    			nonNumeric = true
    			partlen++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

        /** PARALLEL TO */
        public static final char PARALLEL_TO = '\u2225';
    
        /** MINUS SIGN */
        public static final char MINUS_SIGN = '\u2212';
    
        /** FULLWIDTH HYPHEN-MINUS */
        public static final char FULLWIDTH_HYPHEN_MINUS = '\uFF0D';
    
        /** CENT SIGN */
        public static final char CENT_SIGN = '\u00A2';
    
        /** FULLWIDTH CENT SIGN */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen. The number are listed in represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". When this field is null, this field doesn't default to any value and is never evaluated at any time.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      // The indexes are represented as intervals separated by commas.
      // The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
      // The number are listed in represented by the first and last element of the series,
      // separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){a.formUtils.registerLoadedModule("sweden"),a.formUtils.addValidator({name:"swesec",validatorFunction:function(c,d){var e,f,g,h;if(d.valAttr("use-hyphen")){if(h=c.split("-"),2!==h.length)return!1;c=h.join("")}if(!c.match(/^(\d{4})(\d{2})(\d{2})(\d{4})$/))return!1;e=RegExp.$1,f=a.formUtils.parseDateInt(RegExp.$2),g=a.formUtils.parseDateInt(RegExp.$3);var i=parseInt(RegExp.$4.substring(2,3))%2===0?...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    	// represented as "1,3-5,7".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    // non-empty and no more than 15 characters long. It may contain only [-a-z0-9]
    // and must contain at least one letter [a-z]. It must not start or end with a
    // hyphen, nor contain adjacent hyphens.
    //
    // Note: We only allow lower-case characters, even though RFC 6335 is case
    // insensitive.
    func IsValidPortName(port string) []string {
    	var errs []string
    	if len(port) > 15 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/html/template/url.go

    			if norm {
    				continue
    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    			continue
    		case '%':
    			// When normalizing do not re-encode valid escapes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top