- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 952 for Piller (0.09 sec)
-
android/guava/src/com/google/common/collect/Iterators.java
*/ @SuppressWarnings("unchecked") // can cast to <T> because non-Ts are removed @GwtIncompatible // Class.isInstance public static <T> UnmodifiableIterator<T> filter(Iterator<?> unfiltered, Class<T> desiredType) { return (UnmodifiableIterator<T>) filter(unfiltered, instanceOf(desiredType)); } /** * Returns {@code true} if one or more elements returned by {@code iterator} satisfy the given * predicate. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
* * @param session the {@link Session}, must not be {@code null} * @param node the {@link Node} to flatten, must not be {@code null} * @param scope an optional {@link PathScope} to filter out dependencies * @return the flattened list of node * @throws DependencyResolverException */ List<Node> flatten(@Nonnull Session session, @Nonnull Node node, @Nullable PathScope scope)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
} } private fun assertLeftoverFilesCleanedUpEventually(vararg leftoverFiles: String) { leftoverFiles.forEach { assertTrue(projectDir.resolve(it).walk().filter { it.isFile }.toList().isEmpty()) } } @Test fun `fail build if leftover file found and test passes`() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 14 12:35:52 UTC 2023 - 10.6K bytes - Viewed (0) -
common/scripts/setup_env.sh
if [[ "${LATEST_CACHED_IMAGE:-}" != "" ]]; then prefix="$(<<<"$IMAGE_VERSION" cut -d- -f1)" query="${TOOLS_REGISTRY_PROVIDER}/${PROJECT_ID}/${IMAGE_NAME}:${prefix}-*" latest="$("${CONTAINER_CLI}" images --filter=reference="${query}" --format "{{.CreatedAt|json}}~{{.Repository}}:{{.Tag}}~{{.CreatedSince}}" | sort -n -r | head -n1)" IMG="$(<<<"$latest" cut -d~ -f2)" if [[ "${IMG}" == "" ]]; then
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 04:52:54 UTC 2024 - 8.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsBadWordCQ.java
bool((must, should, mustNot, filter) -> { filteredLambda.callback(must, filter); }, opLambda); } public void not(OperatorCall<BadWordCQ> notLambda) { not(notLambda, null); } public void not(final OperatorCall<BadWordCQ> notLambda, final ConditionOptionCall<BoolQueryBuilder> opLambda) { bool((must, should, mustNot, filter) -> notLambda.callback(mustNot), opLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 58.8K bytes - Viewed (0) -
cmd/metacache-server-pool.go
} } }() o.ID = "" } if contextCanceled(ctx) { return entries, ctx.Err() } // Do listing in-place. // Create output for our results. // Create filter for results. o.debugln("Raw List", o) filterCh := make(chan metaCacheEntry, o.Limit) listCtx, cancelList := context.WithCancel(ctx) filteredResults := o.gatherResults(listCtx, filterCh) var wg sync.WaitGroup
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
} } public boolean isAvailable(final String id) { return ComponentUtil.getComponent(ScheduledJobBhv.class).selectByPK(id).filter(e -> Boolean.TRUE.equals(e.getAvailable())) .isPresent(); } public void store(final JobLog jobLog) { ComponentUtil.getComponent(JobLogBhv.class).insertOrUpdate(jobLog, op -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractBaseGraph.java
graph.predecessors(node).iterator(), (N predecessor) -> EndpointPair.ordered(predecessor, node)), Iterators.transform( // filter out 'node' from successors (already covered by predecessors, // above) Sets.difference(graph.successors(node), ImmutableSet.of(node)).iterator(),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsThumbnailQueueCA.java
import org.codelibs.fess.es.config.cbean.ca.ThumbnailQueueCA; import org.codelibs.fess.es.config.cbean.cq.ThumbnailQueueCQ; import org.codelibs.fess.es.config.cbean.cq.bs.BsThumbnailQueueCQ; import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder; import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder; import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 38.6K bytes - Viewed (0)