Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for verde (0.02 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/location.js

    sh","barbados","belarus","belgium","belize","benin","bermuda","bhutan","bolivia","bonaire","bosnia and herzegovina","botswana","bouvet island","brazil","british indian ocean territory","brunei darussalam","bulgaria","burkina faso","burundi","cabo verde","cambodia","cameroon","canada","cayman islands","central african republic","chad","chile","china","christmas island","cocos islands","colombia","comoros","democratic republic of the congo","congo","cook islands","costa rica","côte d'ivoire","croa...
    Registered: 2024-10-31 13:40
    - Last Modified: 2018-01-01 05:12
    - 5.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/no/stopwords.txt

    kvar
    kvarhelst
    kven
    kvi
    kvifor
    me
    medan
    mi
    mine
    mykje
    no
    nokon
    noka
    nokor
    noko
    nokre
    si
    sia
    sidan
    so
    somt
    somme
    um
    upp
    vere
    vore
    verte
    vort
    varte
    Registered: 2024-10-31 13:40
    - Last Modified: 2023-11-27 12:59
    - 994 bytes
    - Viewed (0)
  3. docs/tr/docs/alternatives.md

    # Alternatifler, İlham Kaynakları ve Karşılaştırmalar
    
    **FastAPI**'ya neler ilham verdi? Diğer alternatiflerle karşılaştırıldığında farkları neler? **FastAPI** diğer alternatiflerinden neler öğrendi?
    
    ## Giriş
    
    Başkalarının daha önceki çalışmaları olmasaydı, **FastAPI** var olmazdı.
    
    Geçmişte oluşturulan pek çok araç **FastAPI**'a ilham kaynağı olmuştur.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-20 19:20
    - 28.8K bytes
    - Viewed (0)
  4. tests/test_openapi_separate_input_output_schemas.py

        @app.get("/items/")
        def read_items() -> List[Item]:
            return [
                Item(
                    name="Portal Gun",
                    description="Device to travel through the multi-rick-verse",
                    sub=SubItem(subname="subname"),
                ),
                Item(name="Plumbus"),
            ]
    
        client = TestClient(app)
        return client
    
    
    def test_create_item():
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-12 09:44
    - 19.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/no/protwords.txt

    Hallo
    verden
    Registered: 2024-10-31 13:40
    - Last Modified: 2016-06-11 12:51
    - 17 bytes
    - Viewed (0)
  6. docs_src/separate_openapi_schemas/tutorial002.py

        return item
    
    
    @app.get("/items/")
    def read_items() -> List[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: 2024-11-03 07:19
    - Last Modified: 2023-08-25 19:10
    - 524 bytes
    - Viewed (0)
  7. docs_src/separate_openapi_schemas/tutorial001_py39.py

        return item
    
    
    @app.get("/items/")
    def read_items() -> list[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: 2024-11-03 07:19
    - Last Modified: 2023-08-25 19:10
    - 483 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/da/protwords.txt

    Hej
    verden
    Registered: 2024-10-31 13:40
    - Last Modified: 2016-06-11 12:51
    - 15 bytes
    - Viewed (0)
  9. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py310.py

        assert response.status_code == 200, response.text
        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_py310
    @needs_pydanticv2
    def test_openapi_schema(client: TestClient) -> None:
        response = client.get("/openapi.json")
    Registered: 2024-11-03 07:19
    - Last Modified: 2023-09-28 04:14
    - 4.9K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial002.py

        assert response.status_code == 200, response.text
        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_pydanticv2
    def test_openapi_schema(client: TestClient) -> None:
        response = client.get("/openapi.json")
    Registered: 2024-11-03 07:19
    - Last Modified: 2023-08-25 19:10
    - 4.8K bytes
    - Viewed (0)
Back to top