- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 852 for filter (0.08 sec)
-
android/guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java
CollectionFeature.KNOWN_ORDER, CollectionFeature.SUPPORTS_ADD, CollectionFeature.SUPPORTS_REMOVE) .named("Multiset.filter[Multiset, Predicate]") .createTestSuite()); return suite; } private static TestStringMultisetGenerator unmodifiableMultisetGenerator() { return new TestStringMultisetGenerator() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9.6K bytes - Viewed (0) -
CONTRIBUTING.md
This includes adding the description of the changes to the `accepted-public-api-changes.json` file, and providing a reason for each change. You can add the changes to any place in the file, e.g. at the top. 3. Make sure the file with accepted changes is sorted.\ Use the `./gradlew :architecture-test:sortAcceptedApiChanges` task to sort the file. 4. Validate your changes before committing.\
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
@ElementTypesAreNonnullByDefault enum BloomFilterStrategies implements BloomFilter.Strategy { /** * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the * performance of a Bloom filter (yet only needs two 32bit hash functions). */ MURMUR128_MITZ_32() { @Override public <T extends @Nullable Object> boolean put(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
.of(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).forEach(s -> Configurator.setLevel(s, logLevel))); } public String getLogLevel() { return System.getProperty(Constants.FESS_LOG_LEVEL, Level.WARN.toString()); } public File createTempFile(final String prefix, final String suffix) { try { final File file = File.createTempFile(prefix, suffix);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
cmd/os_windows.go
// the directory itself, if the dirPath doesn't exist this function doesn't return // an error. func readDirFn(dirPath string, filter func(name string, typ os.FileMode) error) error { // Ensure we don't pick up files as directories. globAll := filepath.Clean(dirPath) + `\*` globAllP, err := syscall.UTF16PtrFromString(globAll) if err != nil { return errInvalidArgument }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
} split(fessConfig.getQueryAdditionalAnalyzedFields(), ",") .of(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).forEach(s -> notAnalyzedFieldSet.remove(s))); split(fessConfig.getQueryAdditionalDefaultFields(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).map(s -> { final Pair<String, Float> pair = new Pair<>(); final String[] values = s.split(":");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 04:30:56 UTC 2024 - 16K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
* under the License. */ package org.apache.maven.internal.transformation.impl; import javax.inject.Inject; import javax.inject.Named; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Path; import java.util.ArrayList; import java.util.List; import java.util.Objects; import java.util.stream.Collectors; import org.apache.maven.api.SessionData;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
@Override public void visit(CompilationUnit compilationUnit, ClassMetaDataRepository<ClassMetaData> repository) { super.visit(compilationUnit, repository); compilationUnit.getImports().stream() .filter(anImport -> !anImport.isStatic()) .map(anImport -> anImport.getNameAsString() + (anImport.isAsterisk() ? ".*" : "")) .forEach(anImport -> allClasses.forEach(classMetaData -> classMetaData.addImport(anImport)));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsUserInfoCQ.java
} } public void filtered(FilteredCall<UserInfoCQ, UserInfoCQ> filteredLambda) { filtered(filteredLambda, null); } public void filtered(FilteredCall<UserInfoCQ, UserInfoCQ> filteredLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) { bool((must, should, mustNot, filter) -> { filteredLambda.callback(must, filter); }, opLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java
@Override public String get(final String propertyKey) { final String plainValue = getFromCache(propertyKey); final String filteredValue = propertyFilter.filter(propertyKey, plainValue); verifyPropertyValue(propertyKey, filteredValue); // null checked return filterPropertyAsDefault(filteredValue); // not null here }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0)