Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 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. 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)
  6. 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)
  7. .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)
  8. 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)
  9. 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)
  10. 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)
Back to top