- Sort Score
- Result 10 results
- Languages All
Results 2851 - 2860 of 4,617 for New (0.04 sec)
-
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java
import org.codelibs.core.io.ResourceUtil; public class ProfileUtil { private static final String SPRING_PROFILES_ACTIVE = "spring.profiles.active"; public static void setup() { final List<String> list = new ArrayList<String>(); final String values = System.getProperty(SPRING_PROFILES_ACTIVE); if (values != null) { for (final String value : values.split(",")) { list.add(value);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
docs/em/docs/advanced/additional-responses.md
old_dict = { "old key": "old value", "second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` ๐ฅ, `new_dict` ๐ ๐ ๐ ๐-๐ฒ ๐ซ โช๏ธโก๏ธ `old_dict` โ ๐ ๐-๐ฒ ๐ซ: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ``` ๐ ๐ช โ๏ธ ๐ โ ๐ค-โ๏ธ ๐ข ๐จ ๐ *โก ๐ ๏ธ* & ๐ ๐ซ โฎ๏ธ ๐ ๐ ๐. ๐ผ:Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
cmd/config-current.go
}, nil } func newServerConfig() config.Config { return config.New() } // newSrvConfig - initialize a new server config, saves env parameters if // found, otherwise use default parameters func newSrvConfig(objAPI ObjectLayer) error { // Initialize server config. srvCfg := newServerConfig() // hold the mutex lock before a new config is assigned. globalServerConfigMu.Lock() globalServerConfig = srvCfg
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 28.5K bytes - Viewed (0) -
docs/pt/docs/advanced/additional-responses.md
"old key": "old value", "second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` Aqui, o `new_dict` terรก todos os pares de chave-valor do `old_dict` mais o novo par de chave-valor: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/DefaultQueryBuilderTest.java
public void test_invalid_null() { try { new DefaultQueryBuilder(null); fail(); } catch (IllegalArgumentException e) { // nothing } } public void test_invalid_query() { try { new DefaultQueryBuilder(QueryBuilders.matchAllQuery()); fail(); } catch (IllegalArgumentException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/TopKSelector.java
* @throws IllegalArgumentException if {@code k < 0} or {@code k > Integer.MAX_VALUE / 2} */ public static <T extends @Nullable Object> TopKSelector<T> least( int k, Comparator<? super T> comparator) { return new TopKSelector<>(comparator, k); } /** * Returns a {@code TopKSelector} that collects the greatest {@code k} elements added to it,Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 11.4K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
private static final String WILDCARD = "*"; private static final Map<MediaType, MediaType> knownTypes = new HashMap<>(); private static MediaType createConstant(String type, String subtype) { MediaType mediaType = addKnownType(new MediaType(type, subtype, ImmutableListMultimap.<String, String>of())); mediaType.parsedCharset = Optional.absent(); return mediaType; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
guava/src/com/google/common/base/Functions.java
* {@code (Function<K, V> & Serializable) map::get}. */ public static <K extends @Nullable Object, V extends @Nullable Object> Function<K, V> forMap( Map<K, V> map) { return new FunctionForMapNoDefault<>(map); } /** * Returns a function which performs a map lookup with a default value. The function created byRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 15.4K bytes - Viewed (0)