Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Hyphen (0.14 sec)

  1. build/pause/Makefile

    all-container-registry: $(addprefix sub-container-registry-,$(ALL_OS_ARCH))
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    sub-container-%:
    	$(MAKE) OUTPUT_TYPE=$(call word-hyphen,$*,1) OS=$(call word-hyphen,$*,2) ARCH=$(call word-hyphen,$*,3) OSVERSION=$(call word-hyphen,$*,4) container
    
    build: $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cluster/images/etcd/Makefile

    push: build
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    
    sub-build-%:
    	$(MAKE) OUTPUT_TYPE=docker OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) build
    
    all-build: $(addprefix sub-build-,$(ALL_OS_ARCH))
    
    sub-push-image-%:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/web-platform-test-toascii.json

    [
      {
        "comment": "Label with hyphens in 3rd and 4th position",
        "input": "aa--",
        "output": "aa--"
      },
      {
        "input": "a†--",
        "output": "xn--a---kp0a"
      },
      {
        "input": "ab--c",
        "output": "ab--c"
      },
      {
        "comment": "Label with leading hyphen",
        "input": "-x",
        "output": "-x"
      },
      {
        "input": "-†",
        "output": "xn----xhn"
      },
      {
        "input": "-x.xn--zca",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/header-params.md

    Most of the standard headers are separated by a "hyphen" character, also known as the "minus symbol" (`-`).
    
    But a variable like `user-agent` is invalid in Python.
    
    So, by default, `Header` will convert the parameter names characters from underscore (`_`) to hyphen (`-`) to extract and document the headers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/unicode/script_test.go

    var inPropTest = []T{
    	{0x0046, "ASCII_Hex_Digit"},
    	{0x200F, "Bidi_Control"},
    	{0x2212, "Dash"},
    	{0xE0001, "Deprecated"},
    	{0x00B7, "Diacritic"},
    	{0x30FE, "Extender"},
    	{0xFF46, "Hex_Digit"},
    	{0x2E17, "Hyphen"},
    	{0x2FFB, "IDS_Binary_Operator"},
    	{0x2FF3, "IDS_Trinary_Operator"},
    	{0xFA6A, "Ideographic"},
    	{0x200D, "Join_Control"},
    	{0x0EC4, "Logical_Order_Exception"},
    	{0x2FFFF, "Noncharacter_Code_Point"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  6. pkg/config/kube/conversion.go

    		case "kubernetes.io/h2c":
    			return protocol.HTTP2
    		}
    	}
    
    	// Check if the port name prefix is "grpc-web". Need to do this before the general
    	// prefix check below, since it contains a hyphen.
    	if len(name) >= grpcWebLen && strings.EqualFold(name[:grpcWebLen], grpcWeb) {
    		return protocol.GRPCWeb
    	}
    
    	// Parse the port name to find the prefix, if any.
    	i := strings.IndexByte(name, '-')
    	if i >= 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    }
    
    func parsePrerelease(v string) (t, rest string, ok bool) {
    	// "A pre-release version MAY be denoted by appending a hyphen and
    	// a series of dot separated identifiers immediately following the patch version.
    	// Identifiers MUST comprise only ASCII alphanumerics and hyphen [0-9A-Za-z-].
    	// Identifiers MUST NOT be empty. Numeric identifiers MUST NOT include leading zeroes."
    	if v == "" || v[0] != '-' {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. .teamcity/README.md

    and test another isolated pipeline from any branch. 
    
    We'll explain everything via an example. Let's say you make some changes on your branch `myTestBranch`
    (we highly recommend to name this branch without prefix and hyphen (`-`) because it's used to generate build type ID) and want to
    test these changes without affecting `master`/`release` pipeline. Here are the instructions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/names/controller_names.go

    // 1. naming should be consistent across the controllers
    // 2. use of shortcuts should be avoided, unless they are well-known non-Kubernetes shortcuts
    // 3. Kubernetes' resources should be written together without a hyphen ("-")
    //
    // CHANGE POLICY
    // The controller names should be treated as IDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. 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)
Back to top