- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 8,563 for to (0.01 sec)
-
.github/workflows/add-to-project.yml
name: Add to Project on: pull_request_target: issues: types: - opened - reopened jobs: add-to-project: name: Add to project runs-on: ubuntu-latest steps: - uses: actions/add-to-project@v1.0.2 with: project-url: https://github.com/orgs/fastapi/projects/2
Registered: 2025-05-25 07:19 - Last Modified: 2024-08-13 02:00 - 368 bytes - Viewed (0) -
.github/workflows/upgradle-to-latest-wrapper.yml
uses: actions/setup-java@v4 with: distribution: temurin java-version: 17 - name: Update Gradle to latest nightly and push to bot/upgradle-to-latest-wrapper run: | set -eu git config --global user.email "******@****.***" git config --global user.name "GitHub Action" git reset origin/master --hard ./gradlew wrapper --gradle-version=nightly
Registered: 2025-05-28 11:36 - Last Modified: 2025-02-04 09:57 - 1.2K bytes - Viewed (0) -
.github/workflows/auto-assign-pr-to-author.yml
name: 'Auto Assign PR to Author' on: pull_request: types: [opened] permissions: {} jobs: add-reviews: permissions: contents: read # for kentaro-m/auto-assign-action to fetch config file pull-requests: write # for kentaro-m/auto-assign-action to assign PR reviewers runs-on: ubuntu-latest steps:
Registered: 2025-05-28 11:36 - Last Modified: 2024-11-12 13:13 - 381 bytes - Viewed (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
## Date 2024-01-12 ## Context Gradle's public API requires equal access from all JVM-based languages. Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library. Historically, Gradle has shipped with some Groovy types in very prominent APIs. This required the Kotlin DSL to add special integration to work with Groovy closures.
Registered: 2025-05-28 11:36 - Last Modified: 2024-03-10 20:38 - 1.8K bytes - Viewed (0) -
manifests/charts/gateways/istio-ingress/values.yaml
# have a shared root CA for this model to work. enabled: false # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection # to properly label proxies clusterName: "" # The suffix for global service names globalDomainSuffix: "global" # Enable envoy filter to translate `globalDomainSuffix` to cluster local suffix for cross cluster communication
Registered: 2025-05-28 22:53 - Last Modified: 2025-01-23 18:47 - 12.7K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PrimitiveKotlinTypeStrings.kt
mapOf( "java.lang.Object" to "Any", "java.lang.String" to "String", "java.lang.Character" to "Char", "char" to "Char", "java.lang.Boolean" to "Boolean", "boolean" to "Boolean", "java.lang.Byte" to "Byte", "byte" to "Byte", "java.lang.Short" to "Short", "short" to "Short", "java.lang.Integer" to "Int", "int" to "Int",
Registered: 2025-05-28 11:36 - Last Modified: 2023-09-30 16:17 - 1.4K bytes - Viewed (0) -
docs/en/docs/alternatives.md
Given the simplicity of Flask, it seemed like a good match for building APIs. The next thing to find was a "Django REST Framework" for Flask. /// check | Inspired **FastAPI** to Be a micro-framework. Making it easy to mix and match the tools and parts needed. Have a simple and easy to use routing system. /// ### <a href="https://requests.readthedocs.io" class="external-link" target="_blank">Requests</a>
Registered: 2025-05-25 07:19 - Last Modified: 2024-11-09 16:39 - 23.2K bytes - Viewed (0) -
docs/en/docs/tutorial/cors.md
* `expose_headers` - Indicate any response headers that should be made accessible to the browser. Defaults to `[]`. * `max_age` - Sets a maximum time in seconds for browsers to cache CORS responses. Defaults to `600`. The middleware responds to two particular types of HTTP request...
Registered: 2025-05-25 07:19 - Last Modified: 2024-11-09 16:39 - 5.1K bytes - Viewed (0) -
manifests/charts/gateway/values.yaml
# Define the security context for the pod. # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443. # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl. securityContext: {} containerSecurityContext: {} service: # Type of service. Set to "None" to disable the service entirely type: LoadBalancer ports: - name: status-port
Registered: 2025-05-28 22:53 - Last Modified: 2025-05-07 04:44 - 5.9K bytes - Viewed (0) -
internal/store/queuestore_test.go
if err := tearDownQueueStore(); err != nil { t.Fatal("Failed to tear down store ", err) } }() // The max limit is set to 5. store, err := setUpQueueStore(queueDir, 5) if err != nil { t.Fatal("Failed to create a queue store ", err) } for i := 0; i < 5; i++ { if _, err := store.Put(testItem); err != nil { t.Fatal("Failed to put to queue store ", err) } } // Should not allow 6th Put.
Registered: 2025-05-25 19:28 - Last Modified: 2024-11-07 00:52 - 10.3K bytes - Viewed (0)