Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 861 - 870 of 1,832 for context_ (0.05 seconds)

  1. docs_src/json_base64_bytes/tutorial001_py310.py

            "val_json_bytes": "base64",
            "ser_json_bytes": "base64",
        }
    
    
    app = FastAPI()
    
    
    @app.post("/data")
    def post_data(body: DataInput):
        content = body.data.decode("utf-8")
        return {"description": body.description, "content": content}
    
    
    @app.get("/data")
    def get_data() -> DataOutput:
        data = "hello".encode("utf-8")
        return DataOutput(description="A plumbus", data=data)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 21 13:01:31 GMT 2026
    - 892 bytes
    - Click Count (0)
  2. docs_src/request_files/tutorial002_an_py310.py

    <input name="files" type="file" multiple>
    <input type="submit">
    </form>
    </body>
        """
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 826 bytes
    - Click Count (0)
  3. .ci/jobs.t/elastic+elasticsearch+pull-request+part-2-fips.yml

              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/part-2-fips.*'
              github-hooks: true
              status-context: elasticsearch-ci/part-2-fips
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 16 01:16:48 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  4. docs/sts/web-identity.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package main
    
    import (
    	"bytes"
    	"context"
    	"crypto/rand"
    	"encoding/base64"
    	"encoding/json"
    	"errors"
    	"flag"
    	"fmt"
    	"log"
    	"net/http"
    	"net/url"
    	"strings"
    	"time"
    
    	"golang.org/x/oauth2"
    
    	"github.com/minio/minio-go/v7"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 19 09:13:33 GMT 2023
    - 7.8K bytes
    - Click Count (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/Goal.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnenc;
    
    /**
     * The mvnenc tool goal.
     */
    public interface Goal {
        int execute(EncryptContext context) throws Exception;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Nov 13 14:14:56 GMT 2024
    - 973 bytes
    - Click Count (0)
  6. .github/workflows/notify-translations.yml

            required: false
            default: 'false'
    
    jobs:
      job:
        runs-on: ubuntu-latest
        permissions:
          discussions: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  7. .github/workflows/people.yml

            required: false
            default: "false"
    
    jobs:
      job:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  8. .github/workflows/smokeshow.yml

    name: Smokeshow
    
    on:
      workflow_run:
        workflows: [Test]
        types: [completed]
    
    permissions:
      statuses: write
    
    jobs:
      smokeshow:
        runs-on: ubuntu-latest
    
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - uses: actions/setup-python@v6
            with:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 03 00:12:02 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  9. fastapi/concurrency.py

    @asynccontextmanager
    async def contextmanager_in_threadpool(
        cm: AbstractContextManager[_T],
    ) -> AsyncGenerator[_T, None]:
        # blocking __exit__ from running waiting on a free thread
        # can create race conditions/deadlocks if the context manager itself
        # has its own internal pool (e.g. a database connection pool)
        # to avoid this we let __exit__ run without a capacity limit
        # since we're creating a new limiter for each call, any non-zero limit
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="storage"/>
        </jsp:include>
        <main class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.7K bytes
    - Click Count (0)
Back to Top