Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LT (0.11 sec)

  1. tests/main.py

    
    @app.get("/path/param-lt/{item_id}")
    def get_path_param_lt(item_id: float = Path(lt=3)):
        return item_id
    
    
    @app.get("/path/param-lt0/{item_id}")
    def get_path_param_lt0(item_id: float = Path(lt=0)):
        return item_id
    
    
    @app.get("/path/param-le/{item_id}")
    def get_path_param_le(item_id: float = Path(le=3)):
        return item_id
    
    
    @app.get("/path/param-lt-gt/{item_id}")
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. clause/where_test.go

    						Exprs: []clause.Expression{
    							clause.Eq{Column: clause.PrimaryColumn, Value: "1"},
    							clause.Gt{Column: "age", Value: 18},
    						}}, clause.OrConditions{
    						Exprs: []clause.Expression{
    							clause.Lt{Column: "score", Value: 100},
    						},
    					}),
    				}}},
    			"SELECT * FROM `users` WHERE NOT ((`users`.`id` = ? AND `age` > ?) OR `score` < ?)",
    			[]interface{}{"1", 18, 100},
    		},
    	}
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top