- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 674 for Collections2 (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java
Collection<String> packages, String key, XmlNode configuration) { this.realm = realm; this.artifacts = Collections.unmodifiableSet(new HashSet<>(artifacts)); this.packages = Collections.unmodifiableSet(new HashSet<>(packages)); this.key = key; this.configuration = configuration; } /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 4.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ComparatorsTest.java
import static java.util.Arrays.asList; import static java.util.Collections.singleton; import static java.util.Comparator.comparing; import static java.util.Comparator.naturalOrder; import static java.util.Comparator.reverseOrder; import com.google.common.annotations.GwtCompatible; import com.google.common.testing.EqualsTester; import java.util.Collections; import java.util.Comparator; import java.util.Optional;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Apr 12 15:07:59 GMT 2025 - 6.4K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
try { Map<String, ?> options = Collections.singletonMap(ToolchainsReader.IS_STRICT, Boolean.TRUE); try { toolchains = toolchainsReader.read(toolchainsSource.getInputStream(), options); } catch (ToolchainsParseException e) { options = Collections.singletonMap(ToolchainsReader.IS_STRICT, Boolean.FALSE);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 7.3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/features/TesterRequirements.java
} public TesterRequirements(TesterRequirements tr) { this(tr.getPresentFeatures(), tr.getAbsentFeatures()); } public TesterRequirements() { this(Collections.emptySet(), Collections.emptySet()); } public final Set<Feature<?>> getPresentFeatures() { return presentFeatures; } public final Set<Feature<?>> getAbsentFeatures() { return absentFeatures; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.api; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import jakarta.servlet.http.HttpServletRequest; /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/TestLogHandler.java
*/ package com.google.common.testing; import com.google.common.annotations.GwtCompatible; import com.google.errorprone.annotations.concurrent.GuardedBy; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.logging.Handler; import java.util.logging.LogRecord; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.8K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/TermsReduceBenchmark.java
subAggs = InternalAggregations.from(Collections.singletonList(newTerms(rand, dict, false))); } else { subAggs = InternalAggregations.EMPTY; } buckets.add(new StringTerms.Bucket(term, rand.nextInt(10000), subAggs, true, 0L, DocValueFormat.RAW)); } Collections.sort(buckets, (a, b) -> a.compareKey(b));
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Aug 20 15:45:38 GMT 2021 - 8.1K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
import static org.mockito.Mockito.lenient; import static org.mockito.Mockito.never; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.io.IOException; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Properties; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 12.8K bytes - Click Count (0) -
.teamcity/test-buckets.json
}, { "subprojects": [ "declarative-dsl-provider", "declarative-dsl-tooling-builders", "enterprise", "execution-e2e-tests", "file-collections", "ide-plugins", "integ-test", "ivy", "jacoco", "kotlin-dsl-tooling-builders", "language-groovy", "maven",Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 18:38:15 GMT 2026 - 118.6K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/collect/MapBenchmark.java
import static java.util.Collections.sort; import static java.util.Collections.unmodifiableMap; import com.google.caliper.BeforeExperiment; import com.google.caliper.Benchmark; import com.google.caliper.Param; import com.google.common.collect.CollectionBenchmarkSampleData.Element; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 7.8K bytes - Click Count (0)