Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for agrave (0.16 sec)

  1. src/html/entity.go

    		"AMP;":                             '\U00000026',
    		"Aacute;":                          '\U000000C1',
    		"Abreve;":                          '\U00000102',
    		"Acirc;":                           '\U000000C2',
    		"Acy;":                             '\U00000410',
    		"Afr;":                             '\U0001D504',
    		"Agrave;":                          '\U000000C0',
    		"Alpha;":                           '\U00000391',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

            entities.put("Agrave", "\u00c0");
            entities.put("Aacute", "\u00c1");
            entities.put("Acirc", "\u00c2");
            entities.put("Atilde", "\u00c3");
            entities.put("Auml", "\u00c4");
            entities.put("Aring", "\u00c5");
            entities.put("AElig", "\u00c6");
            entities.put("Ccedil", "\u00c7");
            entities.put("Egrave", "\u00c8");
            entities.put("Eacute", "\u00c9");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&":                             "\u0026",
    	"Á":                          "\u00c1",
    	"Ă":                          "\u0102",
    	"Â":                           "\u00c2",
    	"А":                             "\u0410",
    	"𝔄":                             "\U0001d504",
    	"À":                          "\u00c0",
    	"Α":                           "\u0391",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            entities.put("Agrave", "\u00c0");
            entities.put("Aacute", "\u00c1");
            entities.put("Acirc", "\u00c2");
            entities.put("Atilde", "\u00c3");
            entities.put("Auml", "\u00c4");
            entities.put("Aring", "\u00c5");
            entities.put("AElig", "\u00c6");
            entities.put("Ccedil", "\u00c7");
            entities.put("Egrave", "\u00c8");
            entities.put("Eacute", "\u00c9");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"frac34":   "\u00BE",
    	"iquest":   "\u00BF",
    	"Agrave":   "\u00C0",
    	"Aacute":   "\u00C1",
    	"Acirc":    "\u00C2",
    	"Atilde":   "\u00C3",
    	"Auml":     "\u00C4",
    	"Aring":    "\u00C5",
    	"AElig":    "\u00C6",
    	"Ccedil":   "\u00C7",
    	"Egrave":   "\u00C8",
    	"Eacute":   "\u00C9",
    	"Ecirc":    "\u00CA",
    	"Euml":     "\u00CB",
    	"Igrave":   "\u00CC",
    	"Iacute":   "\u00CD",
    	"Icirc":    "\u00CE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/it.js

    non รจ stato confermato.",badDomain:"Il dominio inserito non è corretto.",badUrl:"L' URL inserito non è valido",badCustomVal:"I valori inseriti non sono validi",andSpaces:" e spazi ",badInt:"Il numero inserito non è valido",badSecurityNumber:"Il numero di sicurezza inserito non è valido",badUKVatAnswer:"La Partita IVA (VAT) inserita non è valida nel Regno Unito",badStrength:"La password proposta non è sufficientemente sicura",badNumberOfSelectedOptionsStart:"Deve...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_response_model/test_tutorial003.py

                "password": "fighter",
                "email": "******@****.***",
                "full_name": "Grave Dohl",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "username": "foo",
            "email": "******@****.***",
            "full_name": "Grave Dohl",
        }
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_response_model/test_tutorial003_01_py310.py

                "password": "fighter",
                "email": "******@****.***",
                "full_name": "Grave Dohl",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "username": "foo",
            "email": "******@****.***",
            "full_name": "Grave Dohl",
        }
    
    
    @needs_py310
    def test_openapi_schema(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

            when:
            initFile << """
            apply plugin:SimpleGradlePlugin
    
            class SimpleGradlePlugin implements Plugin<Gradle> {
                void apply(Gradle aGradle) {
                    aGradle.buildFinished {
                        println "Gradle Plugin received build finished!"
                    }
                }
            }
            """
            then:
            def executed = succeeds('tasks')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/map.go

    	// # (of the accents used in Lithuanian: grave, acute, tilde above, and ogonek)
    	// # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I
    	// # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J
    	// # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK
    	// # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top