Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for ndash (0.08 sec)

  1. src/vendor/golang.org/x/sys/cpu/parse.go

    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    func parseRelease(rel string) (major, minor, patch int, ok bool) {
    	// Strip anything after a dash or plus.
    	for i := 0; i < len(rel); i++ {
    		if rel[i] == '-' || rel[i] == '+' {
    			rel = rel[:i]
    			break
    		}
    	}
    
    	next := func() (int, bool) {
    		for i := 0; i < len(rel); i++ {
    			if rel[i] == '.' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

            }
        }
    
        static class DashAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return satisfied(UnitTestPreconditions.UnixDerivative) && locate("dash") != null
            }
        }
    
        static class StaticShAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/util/cdi/cdi.go

    // validateVendorName checks the validity of a vendor name.
    // A vendor name may contain the following ASCII characters:
    //   - upper- and lowercase letters ('A'-'Z', 'a'-'z')
    //   - digits ('0'-'9')
    //   - underscore, dash, and dot ('_', '-', and '.')
    func validateVendorName(vendor string) error {
    	if vendor == "" {
    		return fmt.Errorf("invalid (empty) vendor name")
    	}
    	if !isLetter(rune(vendor[0])) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/dashboard_test.go

    // '.panels[].targets[]?.expr' and '.panels[].panels[]?.targets[]?.expr'
    func extractQueries(dash string) ([]string, error) {
    	var queries []string
    	js := map[string]any{}
    	if err := json.Unmarshal([]byte(dash), &js); err != nil {
    		return nil, err
    	}
    	panels, f := js["panels"]
    	if !f {
    		return nil, fmt.Errorf("failed to find panels in %v", dash)
    	}
    	panelsList, f := panels.([]any)
    	if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy

            expect:
            XmlValidation.isValidXmlName(name)
    
            where:
            name             | _
            'foo'            | _
            'FOO'            | _
            'foo-dash'       | _
            'foo.dot'        | _
            'foo123'         | _
            'ns:foo'         | _
            'foo_underscore' | _
            ':foo'           | _
            '_foo'           | _
            '\u00c0foo'      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  6. src/net/dnsclient.go

    			nonNumeric = true
    			partlen++
    		case '0' <= c && c <= '9':
    			// fine
    			partlen++
    		case c == '-':
    			// Byte before dash cannot be dot.
    			if last == '.' {
    				return false
    			}
    			partlen++
    			nonNumeric = true
    		case c == '.':
    			// Byte before dot cannot be dot, dash.
    			if last == '.' || last == '-' {
    				return false
    			}
    			if partlen > 63 || partlen == 0 {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/unicode/script_test.go

    	{0x0009, "C"},
    	{0x1712, "M"},
    	{0x0031, "N"},
    	{0x00bb, "P"},
    	{0x00a2, "S"},
    	{0x00a0, "Z"},
    }
    
    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"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    		{"ends-with-a-dot.", false},
    		{"ends-with-a-dash-", false},
    		{"-starts-with-a-dash", false},
    		{"THIS-BEGINS-WITH-UPPERCASe", false},
    		{"tHIS-ENDS-WITH-UPPERCASE", false},
    		{"ThisBeginsAndEndsWithUpperCasE", false},
    		{"una ñina", false},
    		{"dash-.may-not-appear-next-to-dot", false},
    		{"dash.-may-not-appear-next-to-dot", false},
    		{"dash-.-may-not-appear-next-to-dot", false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide functionality that is useful across boundaries of projects,
            companies, or even industries &mdash; utilities useful for a sizable proportion of all Java
            programmers everywhere. If you can give enough detail such that any of us can imagine coming
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/validation/generic.go

    // trailing dashes are allowed.
    var ValidateServiceAccountName = NameIsDNSSubdomain
    
    // maskTrailingDash replaces the final character of a string with a subdomain safe
    // value if it is a dash and if the length of this string is greater than 1. Note that
    // this is used when a value could be appended to the string, see ValidateNameFunc
    // for more info.
    func maskTrailingDash(name string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top