Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for raise (0.22 sec)

  1. fastapi/routing.py

                            }
                        ],
                        body=e.doc,
                    )
                    raise validation_error from e
                except HTTPException:
                    # If a middleware raises an HTTPException, it should be raised again
                    raise
                except Exception as e:
                    http_error = HTTPException(
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                        valid, that would mean a violation of the contract with the client,
                        so it's an error from the API developer. So, FastAPI will raise an
                        error and return a 500 error code (Internal Server Error).
    
                    Read more about it in the
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    because the chimneys were shaped like ears and the roof was
    thatched with fur.  It was so large a house, that she did not
    like to go nearer till she had nibbled some more of the lefthand
    bit of mushroom, and raised herself to about two feet high:  even
    then she walked up towards it rather timidly, saying to herself
    `Suppose it should be raving mad after all!  I almost wish I'd
    gone to see the Hatter instead!'
    
    
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
    redstone
    
    // redumbrella : 2015-03-26 Travelers TLD, LLC
    redumbrella
    
    // rehab : 2014-03-06 Dog Beach, LLC
    rehab
    
    // reise : 2014-03-13 Binky Moon, LLC
    reise
    
    // reisen : 2014-03-06 Binky Moon, LLC
    reisen
    
    // reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
    reit
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    because the chimneys were shaped like ears and the roof was
    thatched with fur.  It was so large a house, that she did not
    like to go nearer till she had nibbled some more of the lefthand
    bit of mushroom, and raised herself to about two feet high:  even
    then she walked up towards it rather timidly, saying to herself
    `Suppose it should be raving mad after all!  I almost wish I'd
    gone to see the Hatter instead!'
    
    
    
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </li>
    </ul>
    
    <p>
    The <code>protect</code> function in the example below invokes
    the function argument <code>g</code> and protects callers from
    run-time panics raised by <code>g</code>.
    </p>
    
    <pre>
    func protect(g func()) {
    	defer func() {
    		log.Println("done")  // Println executes normally even if there is a panic
    		if x := recover(); x != nil {
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top