- Sort Score
- Result 10 results
- Languages All
Results 1061 - 1070 of 2,523 for Create (0.06 sec)
-
android/guava-testlib/test/com/google/common/collect/testing/MinimalCollectionTest.java
public static Test suite() { return CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override public Collection<String> create(String[] elements) { // TODO: MinimalCollection should perhaps throw for (Object element : elements) { if (element == null) { throw new NullPointerException();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ArrayTableColumnTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 1.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ArrayTableRowTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbBasicFileInfo.java
* * @author mbechler * */ public interface SmbBasicFileInfo { /** * * @return file attributes */ int getAttributes (); /** * * @return file create time */ long getCreateTime (); /** * * @return file last write time */ long getLastWriteTime (); /** * * @return file last access time
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts
} parameters.rootProjectDir = this@with parameters.rootProjectBuildDir = project.layout.buildDirectory } val buildEnvironmentExtension = extensions.create("buildEnvironment", BuildEnvironmentExtension::class) buildEnvironmentExtension.gitCommitId = service.flatMap { it.gitCommitId } buildEnvironmentExtension.gitBranch = service.flatMap { it.gitBranch }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 07:44:12 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/AlphaNumWordFilterFactory.java
super(indexSettings, name, settings); maxTokenLength = settings.getAsInt("max_token_length", AlphaNumWordFilter.DEFAULT_MAX_TOKEN_LENGTH); } @Override public TokenStream create(final TokenStream tokenStream) { final AlphaNumWordFilter alphaNumWordFilter = new AlphaNumWordFilter(tokenStream); alphaNumWordFilter.setMaxTokenLength(maxTokenLength); return alphaNumWordFilter; }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/SettableFuture.java
@ElementTypesAreNonnullByDefault public final class SettableFuture<V extends @Nullable Object> extends AbstractFuture.TrustedFuture<V> { /** * Creates a new {@code SettableFuture} that can be completed or cancelled by a later method call. */ public static <V extends @Nullable Object> SettableFuture<V> create() { return new SettableFuture<>(); } @CanIgnoreReturnValue @Override public boolean set(@ParametricNullness V value) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/LinkedHashMultimap.java
*/ public static <K extends @Nullable Object, V extends @Nullable Object> LinkedHashMultimap<K, V> create(Multimap<? extends K, ? extends V> multimap) { LinkedHashMultimap<K, V> result = create(multimap.keySet().size(), DEFAULT_VALUE_SET_CAPACITY); result.putAll(multimap); return result; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 24.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
for (final DictionaryCreator creator : creatorList) { final DictionaryFile<? extends DictionaryItem> file = creator.create(path, timestamp); if (file != null) { return file; } } } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0104=Argument({0}) is not an array. ECL0105=Rethrew {0} as a runtime exception. ECL0106=IOException occurred, because {0} ECL0107=InvalidKeyException occurred, because {0} ECL0108=The path is null. ECL0109=Could not create a parent directory of {0} ECL0110=A parent directory of {0} is not a directory. ECL0111={0} is not a file. ECL0112=Could not store {0} ECL0113=NoSuchPaddingException occurred, because {0}
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0)