Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for ndash (0.05 sec)

  1. src/unicode/tables.go

    	Bidi_Control                       = _Bidi_Control                       // Bidi_Control is the set of Unicode characters with property Bidi_Control.
    	Dash                               = _Dash                               // Dash is the set of Unicode characters with property Dash.
    	Deprecated                         = _Deprecated                         // Deprecated is the set of Unicode characters with property Deprecated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// is large enough to hold at least 99% of the BCP 47 tags.
    	max99thPercentileSize = 32
    
    	// maxSimpleUExtensionSize is the maximum size of a -u extension with one
    	// key-type pair. Equals len("-u-") + key (2) + dash + max value (8).
    	maxSimpleUExtensionSize = 14
    )
    
    // Tag represents a BCP 47 language tag. It is used to specify an instance of a
    // specific language or locale. All language tag values are guaranteed to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The type *must be unique* across all test suites in the same Gradle project.
    By convention, the type is set to the name of the test suite, converted to dash-case - with the exception of the built-in test suite, which uses the value link:{javadocPath}/org/gradle/api/attributes/TestSuiteType.html#UNIT_TEST--['unit-test'].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    		}
    		return string(a), false
    	}
    	if noCanon {
    		return string(a), true
    	}
    
    	upper := true
    	for i, c := range a {
    		// Canonicalize: first letter upper case
    		// and upper case after each dash.
    		// (Host, User-Agent, If-Modified-Since).
    		// MIME headers are ASCII only, so no Unicode issues.
    		if upper && 'a' <= c && c <= 'z' {
    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    //
    // # Signed Note Format
    //
    // A signed note consists of a text ending in newline (U+000A),
    // followed by a blank line (only a newline),
    // followed by one or more signature lines of this form:
    // em dash (U+2014), space (U+0020),
    // server name, space, base64-encoded signature, newline.
    //
    // Signed notes must be valid UTF-8 and must not contain any
    // ASCII control characters (those below U+0020) other than newline.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    		{"contains-$-dollar", true},
    		{"contains-^-carrot", true},
    		{"contains-$-dollar", true},
    		{"contains-$-dollar", true},
    		{".starts-with-a-dot", true},
    		{"ends-with-a-dot.", true},
    		{"ends-with-a-dash-", true},
    		{"-starts-with-a-dash", true},
    		{"THIS-BEINGS-WITH-UPPERCASe", true},
    		{"tHIS-ENDS-WITH-UPPERCASE", true},
    		{"ThisBeginsAndEndsWithUpperCase", true},
    		{"una ñina", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/net/mail/message_test.go

    	// Should pass
    	tests := []string{
    		`<******@****.***>`,
    		`<******@****.***>`,
    		`<".bob"@example.com>`,
    		`<" "@example.com>`,
    		`<some.mail-with-dash@example.com>`,
    		`<"dot.and space"@example.com>`,
    		`<"******@****.***"@example.com>`,
    		`<admin@mailserver1>`,
    		`<postmaster@localhost>`,
    		"<#!$%&'*+-/=?^_`{}|~@example.org>",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"all":     203,
    				"size":    "204",
    				// identifiers that have _s
    				"_true": 301,
    				// identifiers that have the characters we escape
    				"dot.dot":                            401,
    				"dash-dash":                          402,
    				"slash/slash":                        403,
    				"underscore_underscore":              404, // ok, this is not so weird, but it's one we'd like a test case for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

      gotags="selinux,notest,$(echo "${GOFLAGS:-}" | sed -ne 's|.*-tags=\([^-]*\).*|\1|p')"
    
      local -a targets=()
      local arg
    
      for arg; do
        if [[ "${arg}" == -* ]]; then
          # Assume arguments starting with a dash are flags to pass to go.
          goflags+=("${arg}")
        else
          targets+=("${arg}")
        fi
      done
    
      local -a platforms
      IFS=" " read -ra platforms <<< "${KUBE_BUILD_PLATFORMS:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    ====
    
    [[sub:mapping-aliases-to-accessors]]
    ==== Aliases and their mapping to type safe accessors
    
    Aliases must consist of a series of identifiers separated by a dash (`-`, recommended), an underscore (`_`) or a dot (`.`).
    Identifiers themselves must consist of ascii characters, preferably lowercase, eventually followed by numbers.
    
    For example:
    
    - `guava` is a valid alias
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top