Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 942 for hyphens (0.1 sec)

  1. cmd/kubelet/app/options/globalflags.go

    	addCadvisorFlags(fs)
    	addCredentialProviderFlags(fs)
    	verflag.AddFlags(fs)
    	logs.AddFlags(fs, logs.SkipLoggingConfigurationFlags())
    }
    
    // normalize replaces underscores with hyphens
    // we should always use hyphens instead of underscores when registering kubelet flags
    func normalize(s string) string {
    	return strings.Replace(s, "_", "-", -1)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. common/config/.yamllint.yml

      brackets: disable
      colons: enable
      commas: disable
      comments: disable
      comments-indentation: disable
      document-end: disable
      document-start: disable
      empty-lines: disable
      empty-values: disable
      hyphens: enable
      indentation: disable
      key-duplicates: enable
      key-ordering: disable
      line-length: disable
      new-line-at-end-of-file: disable
      new-lines: enable
      octal-values: disable
      quoted-strings: disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 30 23:53:31 UTC 2020
    - 863 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. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    		errs = append(errs, "must contain only alpha-numeric characters (a-z, 0-9), and hyphens (-)")
    	}
    	if !portNameOneLetterRegexp.MatchString(port) {
    		errs = append(errs, "must contain at least one letter (a-z)")
    	}
    	if strings.Contains(port, "--") {
    		errs = append(errs, "must not contain consecutive hyphens")
    	}
    	if len(port) > 0 && (port[0] == '-' || port[len(port)-1] == '-') {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			t.Errorf("expected true for %q: %v", val, msgs)
    		}
    	}
    
    	badValues := []string{"longerthan15characters", "", strings.Repeat("a", 16), "12345", "1-2-3-4", "-begin", "end-", "two--hyphens", "whois++"}
    	for _, val := range badValues {
    		if msgs := IsValidPortName(val); len(msgs) == 0 {
    			t.Errorf("expected false for %q", val)
    		}
    	}
    }
    
    func TestIsQualifiedName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. 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)
  8. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    }
    
    // ValidateLabels sets whether to check the mandatory label validation criteria
    // as defined in Section 5.4 of RFC 5891. This includes testing for correct use
    // of hyphens ('-'), normalization, validity of runes, and the context rules.
    // In particular, ValidateLabels also sets the CheckHyphens and CheckJoiners flags
    // in UTS #46.
    func ValidateLabels(enable bool) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    }
    
    // ValidateLabels sets whether to check the mandatory label validation criteria
    // as defined in Section 5.4 of RFC 5891. This includes testing for correct use
    // of hyphens ('-'), normalization, validity of runes, and the context rules.
    // In particular, ValidateLabels also sets the CheckHyphens and CheckJoiners flags
    // in UTS #46.
    func ValidateLabels(enable bool) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/html.go

    		}
    	}
    	return nil, 0, false
    }
    
    func parseTagName(s string, i int) (string, int, bool) {
    	// “A tag name consists of an ASCII letter followed by zero or more ASCII letters, digits, or hyphens (-).”
    	if i < len(s) && isLetter(s[i]) {
    		j := i + 1
    		for j < len(s) && isLDH(s[j]) {
    			j++
    		}
    		return s[i:j], j, true
    	}
    	return "", 0, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top