Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for get_b_a (0.09 sec)

  1. tests/test_custom_route_class.py

    
    router_a = APIRouter(route_class=APIRouteA)
    router_b = APIRouter(route_class=APIRouteB)
    router_c = APIRouter(route_class=APIRouteC)
    
    
    @router_a.get("/")
    def get_a():
        return {"msg": "A"}
    
    
    @router_b.get("/")
    def get_b():
        return {"msg": "B"}
    
    
    @router_c.get("/")
    def get_c():
        return {"msg": "C"}
    
    
    router_b.include_router(router=router_c, prefix="/c")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

        }
    
        class PropNames {
            String getA() { null }
    
            String getB() { null }
    
            String getURL() { null }
    
            String getUrl() { null }
    
            String get_A() { null }
        }
    
        class BooleanProps {
            boolean prop
    
            boolean isSomeProp() {
                return prop
            }
    
            void setSomeProp(boolean value) {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top