- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for 312 (0.01 sec)
-
ci/official/requirements_updater/README.md
``` # Either add an entry to your `.bazelrc` file build --repo_env=HERMETIC_PYTHON_VERSION=3.12 # OR pass it directly to your specific build command bazel build <target> --repo_env=HERMETIC_PYTHON_VERSION=3.12 # OR set the environment variable globally in your shell: export HERMETIC_PYTHON_VERSION=3.12 ``` You may run builds and tests against different versions of Python sequentially
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Jun 29 00:19:18 UTC 2024 - 3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/jax.requirements.txt
matplotlib pillow>=9.1.0 rich absl-py portpicker six opt-einsum auditwheel typing_extensions importlib_metadata>=4.6 numpy==1.26.0;python_version=="3.12" numpy==1.23.4;python_version=="3.11" numpy==1.22.4;python_version<"3.11" scipy==1.11.2;python_version=="3.12" scipy==1.9.2;python_version=="3.11" scipy==1.7.3;python_version<"3.11" ml_dtypes>=0.2.0 # For using Python 3.11 with Bazel 6 (b/286090018)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 30 20:02:17 UTC 2024 - 570 bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2}, 3, new byte[] {2, 1}); testRotate(new byte[] {1, 2, 3}, -5, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -4, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 0, new byte[] {1, 2, 3});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
ci/official/utilities/setup_macos.sh
fi # "TFCI_MACOS_UPGRADE_PYENV_ENABLE" is used to decide if we need to upgrade the # Pyenv version. We enable this for macOS x86 builds as the default Pyenv on # those VMs does not support installing Python 3.12 and above which we need # for running smoke tests in nightly/release wheel builds. if [[ "${TFCI_MACOS_UPGRADE_PYENV_ENABLE}" == 1 ]]; then # The TFCI Mac VM image seems to have uncommitted local changes to the Pyenv
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/MojoExecutionScoped.java
import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Indicates that annotated component should be instantiated before mojo execution starts and discarded after mojo * execution completes. * * @since 3.1.2 */ @Target({TYPE}) @Retention(RUNTIME) @ScopeAnnotation
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java
* </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. * * @see ExecutionListener * @see MojoExecutionListener * @since 3.1.2 */ public interface ProjectExecutionListener { void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
WORKSPACE
local_wheel_workspaces = ["//:WORKSPACE"], requirements = { "3.9": "//:requirements_lock_3_9.txt", "3.10": "//:requirements_lock_3_10.txt", "3.11": "//:requirements_lock_3_11.txt", "3.12": "//:requirements_lock_3_12.txt", }, ) load("@local_tsl//third_party/py:python_init_toolchains.bzl", "python_init_toolchains") python_init_toolchains()
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 16:49:28 UTC 2024 - 3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2}, 3, new byte[] {2, 1}); testRotate(new byte[] {1, 2, 3}, -5, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -4, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 0, new byte[] {1, 2, 3});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3'}, -5, new char[] {'3', '1', '2'}); testRotate(new char[] {'1', '2', '3'}, -4, new char[] {'2', '3', '1'}); testRotate(new char[] {'1', '2', '3'}, -3, new char[] {'1', '2', '3'}); testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'}); testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '1'});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 25.6K bytes - Viewed (0) -
ci/official/envs/py312
# See the License for the specific language governing permissions and # limitations under the License. # ==============================================================================
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jan 10 19:39:41 UTC 2024 - 714 bytes - Viewed (0)