- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for 312 (0.02 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) -
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) -
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) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
testRotate(new double[] {1, 2}, 3, new double[] {2, 1}); testRotate(new double[] {1, 2, 3}, -5, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, -4, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, -3, new double[] {1, 2, 3}); testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 1});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/WeakMojoExecutionListener.java
* scoped components. * </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. * * @see org.apache.maven.execution.MojoExecutionListener * @since 3.1.2 */ public interface WeakMojoExecutionListener { void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MojoExecutionListener.java
* </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. * * @see org.apache.maven.execution.scope.WeakMojoExecutionListener * @since 3.1.2 */ public interface MojoExecutionListener { void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException; void afterMojoExecutionSuccess(MojoExecutionEvent event) throws MojoExecutionException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0)