- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 558 for chaves (0.06 sec)
-
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt
* Abstract base class for [Task][org.gradle.api.Task]s that verify and manipulate the given accepted API changes file. */ @CacheableTask abstract class AbstractAcceptedApiChangesMaintenanceTask : DefaultTask() { /** * A directory that contains jsons with accepted API changes. * Any json is a directory is considered to contain accepted API changes. */ @get:InputDirectory @get:PathSensitive(PathSensitivity.RELATIVE)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 2.9K bytes - Viewed (0) -
CONTRIBUTING.md
- Read the [Code of Conduct](CODE_OF_CONDUCT.md). - Ensure you have signed the [Contributor License Agreement (CLA)](https://cla.developers.google.com/). - Check if your changes are consistent with the [guidelines](#general-guidelines-and-philosophy-for-contribution). - Changes are consistent with the [Coding Style](#c-coding-style). - Run the [unit tests](#running-unit-tests).
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0) -
docs/en/docs/deployment/versions.md
That's why the current versions are still `0.x.x`, this reflects that each version could potentially have breaking changes. This follows the <a href="https://semver.org/" class="external-link" target="_blank">Semantic Versioning</a> conventions. You can create production applications with **FastAPI** right now (and you have probably been doing it for some time), you just have to make sure that you use a version that works correctly with the rest of your code.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Cache.java
* concurrent use, but if the cache is modified (including by eviction) after the iterator is * created, it is undefined which of the changes (if any) will be reflected in that iterator. * * <p><b>Warning to users of Java 8+:</b> do not call any of the new <i>default methods</i> that * have been newly added to {@link ConcurrentMap}! These are marked with "Since: 1.8" in the
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Aug 07 02:38:22 UTC 2022 - 8.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- [Metrics Changes](#metrics-changes) - [Added metrics](#added-metrics) - [Deprecated/changed metrics](#deprecatedchanged-metrics) - [Notable Features](#notable-features) - [Stable](#stable) - [Beta](#beta) - [CLI Improvements](#cli-improvements) - [API Changes](#api-changes) - [Other notable changes](#other-notable-changes-1) - [API Machinery](#api-machinery)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
.github/workflows/build-docs.yml
- name: Export Language Codes id: show-langs run: | echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT build-docs: needs: - changes - langs if: ${{ needs.changes.outputs.docs == 'true' }} runs-on: ubuntu-latest strategy: matrix: lang: ${{ fromJson(needs.langs.outputs.langs) }} steps: - name: Dump GitHub context
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 12:27:19 UTC 2024 - 4.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
} Violation acceptOrReject(JApiCompatibility member, Violation rejection) { List<String> changes = member.compatibilityChanges.collect { Violation.describe(it) } return acceptOrReject(member, changes, rejection) } Violation acceptOrReject(JApiCompatibility member, List<String> changes, Violation rejection) { Set<ApiChange> seenApiChanges = (Set<ApiChange>) context.userData["seenApiChanges"]
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:30:48 UTC 2024 - 10.4K bytes - Viewed (0) -
architecture/tests/integration.md
### Helm Integration Tests - **Location**: `tests/integration/helm` - **Purpose**: Tests related to Helm charts and their deployment. - **Focus**: 1. Deployment of Istio using Helm charts. 1. Verification of Helm chart configurations. 1. Testing of Helm chart upgrades and rollbacks. 1. Validation of custom Helm values and overrides.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 00:57:44 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/zh/docs/deployment/versions.md
## 关于版本 遵循语义版本控制约定,任何低于`1.0.0`的版本都可能会添加 breaking changes。 FastAPI 还遵循这样的约定:任何`PATCH`版本更改都是为了bug修复和non-breaking changes。 /// tip "PATCH"是最后一个数字,例如,在`0.2.3`中,PATCH版本是`3`。 /// 因此,你应该能够固定到如下版本: ```txt fastapi>=0.45.0,<0.46.0 ``` "MINOR"版本中会添加breaking changes和新功能。 /// tip "MINOR"是中间的数字,例如,在`0.2.3`中,MINOR版本是`2`。 /// ## 升级FastAPI版本
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3.1K bytes - Viewed (0) -
ci/official/utilities/code_check_changed_files.bats
[[ ! -s $BATS_TEST_TMPDIR/needs_help.txt ]] } @test "API compatibility test passes, ensuring no unexpected changes to the TF API" { bazel test $TFCI_BAZEL_COMMON_ARGS //tensorflow/tools/api/tests:api_compatibility_test echo "You have to re-generate the TF API goldens and have the API changes reviewed." echo "Look at the instructions for ':api_compatibility_test -- --update_goldens=True'" } teardown_file() {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jan 10 19:39:41 UTC 2024 - 4K bytes - Viewed (0)