Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Sebastian (0.2 sec)

  1. android/guava/src/com/google/common/io/AppendableWriter.java

    /**
     * Writer that places all output on an {@link Appendable} target. If the target is {@link Flushable}
     * or {@link Closeable}, flush()es and close()s will also be delegated to the target.
     *
     * @author Alan Green
     * @author Sebastian Kanthak
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    class AppendableWriter extends Writer {
      private final Appendable target;
      private boolean closed;
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 28 20:13:02 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. .mailmap

    Rene Groeschke <******@****.***> <******@****.***>
    Rene Groeschke <******@****.***> <******@****.***>
    Ryan <******@****.***> <******@****.***>
    Rodrigo B. de Oliveira <******@****.***> <******@****.***>
    Sebastian Schuberth <******@****.***> <******@****.***>
    Stefan Oehme <******@****.***> <******@****.***>
    Sterling Greene <******@****.***> <******@****.***>
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Oct 03 06:34:28 GMT 2017
    - 3.3K bytes
    - Viewed (0)
  3. RELEASE.md

    Chen, qjivy, Raphael, Rasmi, raymondxyang, Renze Yu, resec, Roffel, Ruben
    Vereecken, Ryohei Kuroki, sandipmgiri, Santiago Castro, Scott Kirkland, Sean
    Vig, Sebastian Raschka, Sebastian Weiss, Sergey Kolesnikov, Sergii Khomenko,
    Shahid, Shivam Kotwalia, Stuart Berg, Sumit Gouthaman, superzerg, Sven Mayer,
    tetris, Ti Zhou, Tiago Freitas Pereira, Tian Jin, Tomoaki Oiki, Vaibhav Sood,
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  4. .github/actions/notify-translations/action.yml

    name: "Notify Translations"
    description: "Notify in the issue for a translation when there's a new PR available"
    author: "Sebastián Ramírez <******@****.***>"
    inputs:
      token:
        description: 'Token, to read the GitHub API. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
        required: true
    runs:
      using: 'docker'
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Wed Aug 18 13:07:08 GMT 2021
    - 346 bytes
    - Viewed (0)
  5. .github/actions/people/action.yml

    name: "Generate FastAPI People"
    description: "Generate the data for the FastAPI People page"
    author: "Sebastián Ramírez <******@****.***>"
    inputs:
      token:
        description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.FASTAPI_PEOPLE }}'
        required: true
    runs:
      using: 'docker'
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sun Jul 09 15:44:40 GMT 2023
    - 333 bytes
    - Viewed (0)
  6. docs/en/data/external_links.yml

        title: 'PyCon AU 2023: Testing asynchronous applications with FastAPI and pytest'
      - author: Sebastián Ramírez (tiangolo)
        author_link: https://twitter.com/tiangolo
        link: https://www.youtube.com/watch?v=PnpTY1f4k2U
        title: '[VIRTUAL] Py.Amsterdam''s flying Software Circus: Intro to FastAPI'
      - author: Sebastián Ramírez (tiangolo)
        author_link: https://twitter.com/tiangolo
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  7. LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2018 Sebastián Ramírez
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Dec 08 07:57:18 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  8. .github/actions/comment-docs-preview-in-pr/action.yml

    name: Comment Docs Preview in PR
    description: Comment with the docs URL preview in the PR
    author: Sebastián Ramírez <******@****.***>
    inputs:
      token:
        description: Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}
        required: true
      deploy_url:
        description: The deployment URL to comment in the PR
        required: true
    runs:
      using: docker
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sun Oct 25 17:54:36 GMT 2020
    - 394 bytes
    - Viewed (0)
  9. CITATION.cff

    cff-version: 1.2.0
    title: FastAPI
    message: >-
      If you use this software, please cite it using the
      metadata from this file.
    type: software
    authors:
      - given-names: Sebastián
        family-names: Ramírez
        email: ******@****.***
    identifiers:
    repository-code: 'https://github.com/tiangolo/fastapi'
    url: 'https://fastapi.tiangolo.com'
    abstract: >-
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sun Oct 22 10:03:38 GMT 2023
    - 615 bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

    import static org.mockito.Mockito.calls;
    import static org.mockito.Mockito.inOrder;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.never;
    import static org.mockito.Mockito.when;
    
    /**
     * @author Sebastien Doyon
     */
    class DefaultClassRealmManagerTest {
    
        private DefaultClassRealmManager newDefaultClassRealmManager(PlexusContainer container) {
            HashSet<String> exportedPackages = new HashSet<String>();
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top