- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 668 for Runner (0.08 seconds)
-
.github/workflows/ci-build.yml
# with: # runner: 'linux-x86-n2-16' # tfci: 'py313,linux_x86,rbe' #build-and-test-linux-x86-cuda: # uses: ./.github/workflows/build-reusable.yml # with: # runner: 'linux-x86-n4-32' # tfci: 'py313,linux_x86_cuda' #build-and-test-arm64: # uses: ./.github/workflows/build-reusable.yml # with: # runner: 'linux-arm64-c4a-16'
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 1.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java
@Test void none() throws Exception { assertEquals("NONE;", runner(Map.of())); } @Test void generic() throws Exception { assertEquals(GenericCIDetector.NAME + ";", runner(Map.of("CI", "true"))); } @Test void jenkins() throws Exception { assertEquals(JenkinsCIDetector.NAME + ";", runner(Map.of("CI", "true", "WORKSPACE", "foobar"))); } @TestCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/integTest/java/org/elasticsearch/gradle/jarhell/TestingConventionsTasksIT.java
import org.gradle.testkit.runner.BuildResult; import org.gradle.testkit.runner.GradleRunner; public class TestingConventionsTasksIT extends GradleIntegrationTestCase { @Override public String projectName() { return "testingConventions"; } public void testInnerClasses() { GradleRunner runner = getGradleRunner().withArguments("clean", ":no_tests_in_inner_classes:testingConventions", "-i", "-s");Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 5.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
} }; Thread runner = new Thread(task); runner.start(); isInterruptibleRegistered.await(); RuntimeException expected = assertThrows(RuntimeException.class, task::interruptTask); assertThat(expected) .hasMessageThat() .isEqualTo("I bet you didn't think Thread.interrupt could throw"); /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
} }; Thread runner = new Thread(task); runner.start(); isInterruptibleRegistered.await(); RuntimeException expected = assertThrows(RuntimeException.class, task::interruptTask); assertThat(expected) .hasMessageThat() .isEqualTo("I bet you didn't think Thread.interrupt could throw"); /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/ftp/README.md
``` sftp -P 8022 minioadmin@localhost minioadmin@localhost's password: Connected to localhost. sftp> ls runner/ chunkdocs testdir ``` Following example shows how to download an object locally via `sftp` client: ``` sftp> get runner/chunkdocs/metadata metadata Fetching /runner/chunkdocs/metadata to metadata
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue May 07 06:41:25 GMT 2024 - 7.8K bytes - Click Count (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
private OpenSearchRunner runner; @Override protected String prepareConfigFile() { return "app.xml"; } @Override protected boolean isUseOneTimeContainer() { return true; } @Override public void setUp(final TestInfo testInfo) throws Exception { // create runner instance runner = new OpenSearchRunner(); // create ES nodesCreated: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 15 01:11:43 GMT 2026 - 7.8K bytes - Click Count (0) -
guava-testlib/test/com/google/common/collect/testing/MyTester.java
* limitations under the License. */ package com.google.common.collect.testing; import org.jspecify.annotations.Nullable; import org.junit.Ignore; /** Support class added to a suite as part of {@link FeatureSpecificTestSuiteBuilderTest}. */ /* * @Ignore affects the Android test runner (and only the Android test runner): It respects JUnit 4 * annotations even on JUnit 3 tests. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/settings/ElevateWordSettingsTest.java
runner.ensureYellow(); } @AfterClass public static void afterClass() throws Exception { runner.close(); runner.clean(); } @Before public void before() throws Exception { runner.admin().indices().prepareDelete("_all").execute().actionGet(); runner.refresh();
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Nov 23 13:04:17 GMT 2025 - 5.4K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/conftest.py
if item_path.is_relative_to(THIS_DIR): item.add_marker(skip_on_windows) @pytest.fixture(name="runner") def get_runner(): runner = CliRunner() with runner.isolated_filesystem(): yield runner @pytest.fixture(name="root_dir") def prepare_paths(runner): docs_dir = Path("docs") en_docs_dir = docs_dir / "en" / "docs" lang_docs_dir = docs_dir / "lang" / "docs"
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 25 10:37:59 GMT 2026 - 1.3K bytes - Click Count (0)