- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,679 for Chen (0.1 sec)
-
RELEASE.md
* XLA reduction emitter is deterministic when the environment variable `TF_DETERMINISTIC_OPS` is set to "true" or "1". This extends deterministic `tf.nn.bias_add` back-prop functionality (and therefore also deterministic back-prop of bias-addition in Keras layers) to include when XLA JIT compilation is enabled. * Fix problem, when running on a CUDA GPU and when either environment
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0) -
docs/en/docs/release-notes.md
Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR [#134](https://github.com/tiangolo/fastapi/pull/134). * Update [SQL Tutorial](https://fastapi.tiangolo.com/tutorial/sql-databases/#create-a-middleware-to-handle-sessions) to close database sessions even when there are exceptions. PR [#89](https://github.com/tiangolo/fastapi/pull/89)...
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:25:57 UTC 2024 - 460.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy
def annotations = [] jApiType.annotations >> annotations when: annotations.clear() then: rule.maybeViolation(jApiType).humanExplanation =~ 'Is not annotated with @Incubating' when: annotations.add(incubatingAnnotation) then: rule.maybeViolation(jApiType) == null where: apiElement | jApiTypeName
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 01 20:12:19 UTC 2023 - 16K bytes - Viewed (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateKotlinVersionsTest.groovy
def "latest patch version"() { given: def allVersions = ["2.0.30", "2.0.20", "2.0.10", "2.0.0"] + previousVersions when: def selected = UpdateKotlinVersions.selectVersionsFrom(minimumSupported, allVersions) then: selected == ["1.9.10", "1.9.25", "2.0.0", "2.0.30"] } def "beta of latest patch version"() { given: def allVersions = [
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jul 23 22:23:07 UTC 2024 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy
when: run('checkDeadInternalLinks').build() then: assertNoDeadLinks() } def "finds Markdown style links"() { given: sampleDoc << """ === Markdown Style Links [Invalid markdown link](https://docs.gradle.org/nowhere) """ when: run('checkDeadInternalLinks').buildAndFail()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 08:08:05 UTC 2024 - 8.3K bytes - Viewed (0) -
ci/official/utilities/setup_macos.sh
fi set -x # When cross-compiling with RBE, we need to copy the macOS sysroot to be # inside the TensorFlow root directory. We then define them as a filegroup # target inside "tensorflow/tools/toolchains/cross_compile/cc" so that Bazel # can register it as an input to compile/link actions and send it to the remote # VMs when needed.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy
def canAddMetaData() { TestDomainObject value = new TestDomainObject('a') when: repository.put('class', value) then: repository.find('class') == value repository.get('class') == value } def findReturnsNullForUnknownClass() { expect:
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Apr 06 02:21:33 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
//// //// tab | Windows PowerShell <div class="termy"> ```console $ Get-Command python C:\Users\user\code\awesome-project\.venv\Scripts\python ``` </div> If it shows the `python` binary at `.venv\Scripts\python`, inside of your project (in this case `awesome-project`), then it worked. 🎉 //// ## Upgrade `pip`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
* `C:\Windows\System32` //// When you type a **command** in the terminal, the operating system **looks for** the program in **each of those directories** listed in the `PATH` environment variable. For example, when you type `python` in the terminal, the operating system looks for a program called `python` in the **first directory** in that list.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Sep 08 20:36:53 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
``` ### About `__name__ == "__main__"` The main purpose of the `__name__ == "__main__"` is to have some code that is executed when your file is called with: <div class="termy"> ```console $ python myapp.py ``` </div> but is not called when another file imports it, like in: ```Python from myapp import app ``` #### More details Let's say your file is named `myapp.py`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.4K bytes - Viewed (0)