Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for acute (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    						switch c.src[c.pSrc+1] {
    						case 0x80: // U+0300 COMBINING GRAVE ACCENT
    							s = "\u00cc" // U+00CC LATIN CAPITAL LETTER I WITH GRAVE
    						case 0x81: // U+0301 COMBINING ACUTE ACCENT
    							s = "\u00cd" // U+00CD LATIN CAPITAL LETTER I WITH ACUTE
    						case 0x83: // U+0303 COMBINING TILDE
    							s = "\u0128" // U+0128 LATIN CAPITAL LETTER I WITH TILDE
    						case 0x88: // U+0308 COMBINING DIAERESIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    01FB          ; valid                                  # 1.1  LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE
    01FC          ; mapped                 ; 01FD          # 1.1  LATIN CAPITAL LETTER AE WITH ACUTE
    01FD          ; valid                                  # 1.1  LATIN SMALL LETTER AE WITH ACUTE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. src/unicode/letter_test.go

    	{UpperCase, 0xA65F, 0xA65E},
    	{LowerCase, 0xA65F, 0xA65F},
    	{TitleCase, 0xA65F, 0xA65E},
    
    	// From another UpperLower sequence
    	// 0139;LATIN CAPITAL LETTER L WITH ACUTE;Lu;0;L;004C 0301;;;;N;LATIN CAPITAL LETTER L ACUTE;;;013A;
    	{UpperCase, 0x0139, 0x0139},
    	{LowerCase, 0x0139, 0x013A},
    	{TitleCase, 0x0139, 0x0139},
    	// 013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT;Lu;0;L;<compat> 004C 00B7;;;;N;;;;0140;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
            entities.put("acirc", "\u00e2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/mdo/reader.vm

            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
            entities.put("acirc", "\u00e2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Zscr;":                            "\U0001d4b5",
    	"&aacute;":                          "\u00e1",
    	"&abreve;":                          "\u0103",
    	"&ac;":                              "\u223e",
    	"&acE;":                             "\u223e\u0333",
    	"&acd;":                             "\u223f",
    	"&acirc;":                           "\u00e2",
    	"&acute;":                           "\u00b4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    // but marks include combining marks, and then we must deal not
    // only with case folding but also normalization: both U+00E9 ('é')
    // and U+0065 U+0301 ('e' followed by combining acute accent)
    // look the same on the page and are treated by some file systems
    // as the same path. If we do allow Unicode marks in paths, there
    // must be some kind of normalization to allow only one canonical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/encoding/xml/xml.go

    	"AElig":    "\u00C6",
    	"Ccedil":   "\u00C7",
    	"Egrave":   "\u00C8",
    	"Eacute":   "\u00C9",
    	"Ecirc":    "\u00CA",
    	"Euml":     "\u00CB",
    	"Igrave":   "\u00CC",
    	"Iacute":   "\u00CD",
    	"Icirc":    "\u00CE",
    	"Iuml":     "\u00CF",
    	"ETH":      "\u00D0",
    	"Ntilde":   "\u00D1",
    	"Ograve":   "\u00D2",
    	"Oacute":   "\u00D3",
    	"Ocirc":    "\u00D4",
    	"Otilde":   "\u00D5",
    	"Ouml":     "\u00D6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

     * limitations under the License.
     */
    package okhttp3.osgi
    
    import aQute.bnd.build.Project
    import aQute.bnd.build.Workspace
    import aQute.bnd.build.model.BndEditModel
    import aQute.bnd.deployer.repository.LocalIndexedRepo
    import aQute.bnd.osgi.Constants
    import aQute.bnd.service.RepositoryPlugin
    import biz.aQute.resolve.Bndrun
    import java.io.File
    import okio.FileSystem
    import okio.Path
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

            def directVersion = "1.5.8"
            def calculatedDirectVersionRange = "[1.5,2)"
            settingsFile << """
    include "direct"
    """
            buildFile << """
    import aQute.bnd.gradle.BundleTaskExtension
    
    plugins {
        id 'biz.aQute.bnd.builder' apply false
        id 'java-library'
    }
    
    dependencies {
        implementation project(":direct")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top