- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 156 for succeeds (0.1 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
} /** * Retrieves an extractor for the specified key. * If multiple extractors are associated with the key, returns a composite extractor * that tries each extractor in order until one succeeds. * * @param key the key to look up * @return the extractor for the key, or null if not found */ public Extractor getExtractor(final String key) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 7.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java
* creation and removal (including automatic removal of zeroes). If the modification of an * AtomicInteger results in zero, we compareAndSet the value to zero; if that succeeds, we remove * the entry from the Map. If another operation sees a zero in the map, it knows that the entry is * about to be removed, so this operation may remove it (often by replacing it with a new * AtomicInteger).
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 08 22:42:14 UTC 2025 - 22.3K bytes - Viewed (0) -
doc/go_spec.html
<p> The capacity, in number of elements, sets the size of the buffer in the channel. If the capacity is zero or absent, the channel is unbuffered and communication succeeds only when both a sender and receiver are ready. Otherwise, the channel is buffered and communication succeeds without blocking if the buffer is not full (sends) or not empty (receives). A <code>nil</code> channel is never ready for communication. </p> <p>
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 02 23:07:19 UTC 2025 - 286.5K bytes - Viewed (1) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java
} UpgradeResult result = orchestrator.executeStrategies(context, pomMap); assertTrue(result.success(), "Orchestrator should succeed when all strategies succeed"); // Verify all strategies were called for (UpgradeStrategy strategy : mockStrategies) { verify(strategy).isApplicable(context);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategyTest.java
UpgradeContext context = createMockContext(); UpgradeResult result = strategy.doApply(context, pomMap); assertTrue(result.success(), "Plugin upgrade should succeed"); // Note: POM may or may not be modified depending on whether upgrades are needed // Verify the plugin version was upgraded Editor editor = new Editor(document);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
UpgradeResult result = strategy.doApply(context, pomMap); assertTrue(result.success(), "Model upgrade should succeed: " + description); assertEquals(expectedModifiedCount, result.modifiedCount(), description); // Verify the model version and namespace - use the updated document from pomMapRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 38.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategyTest.java
UpgradeContext context = createMockContext(); UpgradeResult result = strategy.doApply(context, pomMap); assertTrue(result.success(), "Compatibility fix should succeed"); assertTrue(result.modifiedCount() > 0, "Should have removed duplicate dependency"); // Verify only one dependency remains Editor editor = new Editor(document);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
// Fail 5 times, succeed on 6th attempt when(mockFuture.actionGet(anyLong(), any(TimeUnit.class))).thenAnswer(invocation -> { int count = attemptCount.incrementAndGet(); if (count <= 5) { throw new RuntimeException("Simulated failure #" + count); } return "Success"; });Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:44:44 UTC 2025 - 17K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
equals("teamcity.build.step.status.$GRADLE_RETRY_RUNNER_STEP_NAME", "success") } scriptContent = """ echo "marking this build as successful because the retry build succeeded" echo "##teamcity[buildStatus status='SUCCESS']" echo "##teamcity[addBuildTag 'BuildRetrySuccess']"
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 20 07:29:52 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/resources/fess_message_id.properties
success.failure_url_delete_all = URL gagal telah dihapus. success.delete_file = Berkas {0} telah dihapus. success.job_started = Job telah dimulai: {0}. success.job_stopped = Job telah dihentikan: {0}. success.upload_synonym_file = Berkas sinonim telah diunggah. success.upload_protwords_file = Berkas protwords telah diunggah. success.upload_stopwords_file = Berkas stopwords telah diunggah.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 07 14:12:58 UTC 2025 - 11.8K bytes - Viewed (0)