- Sort Score
- Num 10 results
- Language All
Results 921 - 930 of 1,988 for bist (0.17 seconds)
-
src/main/java/org/codelibs/fess/llm/LlmChatRequest.java
/** * Gets the messages in this request. * * @return the list of messages */ public List<LlmMessage> getMessages() { return messages; } /** * Sets the messages in this request. * * @param messages the list of messages */ public void setMessages(final List<LlmMessage> messages) { this.messages = messages; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 03:38:31 GMT 2026 - 6.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/MoreCollectors.java
} void add(T o) { checkNotNull(o); if (element == null) { this.element = o; } else if (extras.isEmpty()) { // Replace immutable empty list with mutable list. extras = new ArrayList<>(MAX_EXTRAS); extras.add(o); } else if (extras.size() < MAX_EXTRAS) { extras.add(o); } else { throw multiples(true); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 18 16:22:33 GMT 2026 - 6.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
} public void testAnd_listDefensivelyCopied() { List<Predicate<Object>> list = new ArrayList<>(); Predicate<Object> predicate = Predicates.and(list); assertTrue(predicate.apply(1)); list.add(Predicates.alwaysFalse()); assertTrue(predicate.apply(1)); } public void testAnd_iterableDefensivelyCopied() { List<Predicate<Object>> list = new ArrayList<>(); Iterable<Predicate<Object>> iterable =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 32.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
protected LoadingCache<String, List<Map<String, String>>> langItemsCache; /** The encoding for filtering paths. */ protected String filterPathEncoding; /** An array of supported language codes. */ protected String[] supportedLanguages; /** A list of shutdown hooks to be executed on system shutdown. */ protected List<Runnable> shutdownHookList = new ArrayList<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
public void testAddSystemProperty(List<String> cmdList, String name, String defaultValue, String appendValue) { super.addSystemProperty(cmdList, name, defaultValue, appendValue); } public void testAddFessConfigProperties(List<String> cmdList) { super.addFessConfigProperties(cmdList); } public void testAddFessSystemProperties(List<String> cmdList) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableListMultimap.java
Collection<? extends V> values = entry.getValue(); ImmutableList<V> list = (valueComparator == null) ? ImmutableList.copyOf(values) : ImmutableList.sortedCopyOf(valueComparator, values); if (!list.isEmpty()) { builder.put(key, list); size += list.size(); } } return new ImmutableListMultimap<>(builder.buildOrThrow(), size);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 19.5K bytes - Click Count (0) -
.teamcity/src/test/kotlin/SplitBucketTest.kt
), ) val buckets = splitIntoBuckets( list = subprojects, toIntFunction = { it: Subproject -> it.size }, largeElementSplitFunction = { subproject, split -> List(split) { LargeSubprojectSplit(subproject, split) } },Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DocBookBuilder.java
import java.util.LinkedList; import java.util.List; class DocBookBuilder { final LinkedList<Element> stack = new LinkedList<Element>(); final Document document; DocBookBuilder(Document document) { this.document = document; stack.addFirst(document.createElement("root")); } List<Element> getElements() { List<Element> elements = new ArrayList<Element>();Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.8K bytes - Click Count (0) -
LICENSES/third_party/forked/golang/LICENSE
modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Aug 10 21:37:28 GMT 2021 - 1.4K bytes - Click Count (0) -
LICENSES/vendor/github.com/JeffAshton/win_pdh/LICENSE
modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Fri May 08 04:49:00 GMT 2020 - 1.5K bytes - Click Count (0)