Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 344 for labeled (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .github/workflows/containers.yml

    name: containers
    
    on:
      push:
        branches:
          - master
      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_containers:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Nov 21 15:26:25 GMT 2025
    - 872 bytes
    - Click Count (0)
  2. .github/workflows/issue-manager.yml

    name: Issue Manager
    
    on:
      schedule:
        - cron: "13 22 * * *"
      issue_comment:
        types:
          - created
      issues:
        types:
          - labeled
      pull_request_target:
        types:
          - labeled
      workflow_dispatch:
    
    permissions:
      issues: write
      pull-requests: write
    
    jobs:
      issue-manager:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        steps:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 19:36:25 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. .github/workflows/docs.yml

    name: docs
    
    on:
      push:
        branches:
          - master
      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_docs:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 12 23:30:30 GMT 2025
    - 987 bytes
    - Click Count (0)
  4. .github/workflows/notify-translations.yml

    name: Notify Translations
    
    on:
      pull_request_target:
        types:
          - labeled
          - closed
      workflow_dispatch:
        inputs:
          number:
            description: PR number
            required: true
          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 21 13:03:21 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  5. architecture/standards/0009-use-american-english.md

    * `initialize` (not `initialise`)
    * `behavior` (not `behaviour`)
    * `analyze` (not `analyse`)
    * `organization` (not `organisation`)
    * `center` (not `centre`)
    * `canceled` (not `cancelled`)
    * `labeled` (not `labelled`)
    
    ### Rationale for American English
    
    American English was chosen for the following reasons:
    
    * **Current predominance**: The majority of existing Gradle code and documentation already uses American English
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Nov 25 07:01:54 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  6. .github/workflows/build.yml

    name: build
    
    on:
      push:
        branches:
          - master
      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      publish:
        runs-on: ubuntu-latest
        if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
    
        steps:
          - name: Checkout
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 12 04:49:37 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  7. docs/LICENSE

         closely related to copyright including, without limitation,
         performance, broadcast, sound recording, and Sui Generis Database
         Rights, without regard to how the rights are labeled or
         categorized. For purposes of this Public License, the rights
         specified in Section 2(b)(1)-(2) are not Copyright and Similar
         Rights.
    
      d. Effective Technological Measures means those measures that, in the
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon May 10 16:50:06 GMT 2021
    - 18.2K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.30.md

       ([#123611](https://github.com/kubernetes/kubernetes/pull/123611), [@ritazh](https://github.com/ritazh))...
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Jun 18 18:59:10 GMT 2025
    - 398.1K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - The `volume_zone` plugin will consider `beta` labels as `GA` labels during the scheduling
      process. Therefore, if the values of the labels are the same, PVs with `beta` labels
      can also be scheduled to nodes with `GA` labels. ([#118923](https://github.com/kubernetes/kubernetes/pull/118923), [@AxeZhan](https://github.com/AxeZhan))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Mar 12 00:36:01 GMT 2025
    - 429.6K bytes
    - Click Count (1)
  10. CHANGELOG.md

    
    ## Version 5.0.0-alpha.9
    
    _2022-06-16_
    
     *  New: Enforce label length limits in URLs. `HttpUrl` now rejects URLs whose domains aren't valid.
        This includes overly-long domain names (longer than 253 characters), overly-long labels (more
        than 63 characters between dots), and empty labels.
     *  New: Don't include the `Content-Length` header in multipart bodies. Servers must delimit
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 05 16:02:59 GMT 2025
    - 36.2K bytes
    - Click Count (2)
Back to Top