Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for Hyphen (0.18 sec)

  1. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    // StrictDomainName limits the set of permissible ASCII characters to those
    // allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the
    // hyphen). This is set by default for MapForLookup and ValidateForRegistration,
    // but is only useful if ValidateLabels is set.
    //
    // This option is useful, for instance, for browsers that allow characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/batch/v1/generated.proto

      // separated by commas. The numbers are listed in increasing order. Three or
      // more consecutive numbers are compressed and 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".
      // +optional
      optional string completedIndexes = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/link.go

    	//
    	//	For purposes of this spec, a scheme is any sequence of 2–32 characters
    	//	beginning with an ASCII letter and followed by any combination of
    	//	ASCII letters, digits, or the symbols plus (”+”), period (”.”), or
    	//	hyphen (”-”).
    	//
    	//	An absolute URI, for these purposes, consists of a scheme followed by
    	//	a colon (:) followed by zero or more characters other ASCII control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller.go

    		if annotations == nil {
    			annotations = make(map[string]string)
    		}
    		annotations[podResourceClaimAnnotation] = podClaim.Name
    		generateName := pod.Name + "-" + podClaim.Name + "-"
    		maxBaseLen := 57 // Leave space for hyphen and 5 random characters in a name with 63 characters.
    		if len(generateName) > maxBaseLen {
    			// We could leave truncation to the apiserver, but as
    			// it removes at the end, we would loose everything
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"𝒽":                            "\U0001d4bd",
    	"ℏ":                          "\u210f",
    	"ħ":                          "\u0127",
    	"⁃":                          "\u2043",
    	"‐":                          "\u2010",
    	"í":                          "\u00ed",
    	"⁣":                              "\u2063",
    	"î":                           "\u00ee",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/unicode/tables.go

    	Hex_Digit                          = _Hex_Digit                          // Hex_Digit is the set of Unicode characters with property Hex_Digit.
    	Hyphen                             = _Hyphen                             // Hyphen is the set of Unicode characters with property Hyphen.
    	IDS_Binary_Operator                = _IDS_Binary_Operator                // IDS_Binary_Operator is the set of Unicode characters with property IDS_Binary_Operator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    200E..200F    ; disallowed                             # 1.1  LEFT-TO-RIGHT MARK..RIGHT-TO-LEFT MARK
    2010          ; valid                  ;      ; NV8    # 1.1  HYPHEN
    2011          ; mapped                 ; 2010          # 1.1  NON-BREAKING HYPHEN
    2012..2016    ; valid                  ;      ; NV8    # 1.1  FIGURE DASH..DOUBLE VERTICAL LINE
    2017          ; disallowed_STD3_mapped ; 0020 0333     # 1.1  DOUBLE LOW LINE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    	// making the first character and any characters following a
    	// hyphen uppercase and the rest lowercase.
    	//
    	// For client requests, certain headers such as Content-Length
    	// and Connection are automatically written when needed and
    	// values in Header may be ignored. See the documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://ABCD").host).isEqualTo("abcd")
        assertThat(parse("http://Σ").host).isEqualTo("xn--4xa")
      }
    
      @Test
      fun hostnameIgnoredCharacters() {
        // The soft hyphen (­) should be ignored.
        assertThat(parse("http://AB\u00adCD").host).isEqualTo("abcd")
      }
    
      @Test
      fun hostnameMultipleCharacterMapping() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top