- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 791 for puts (0.2 seconds)
-
docs/es/docs/tutorial/body-updates.md
# Body - Actualizaciones { #body-updates } ## Actualización reemplazando con `PUT` { #update-replacing-with-put } Para actualizar un ítem puedes utilizar la operación de [HTTP `PUT`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT). Puedes usar el `jsonable_encoder` para convertir los datos de entrada en datos que se puedan almacenar como JSON (por ejemplo, con una base de datos NoSQL). Por ejemplo, convirtiendo `datetime` a `str`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 4.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/BloomFilterTest.java
BloomFilter<String> bf1 = BloomFilter.create(unencodedCharsFunnel(), 100); bf1.put("1"); bf1.put("2"); BloomFilter<String> bf2 = BloomFilter.create(unencodedCharsFunnel(), 100); bf2.put("1"); bf2.put("2"); new EqualsTester().addEqualityGroup(bf1, bf2).testEquals(); bf2.put("3"); new EqualsTester().addEqualityGroup(bf1).addEqualityGroup(bf2).testEquals(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 23K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
@Test public void test_searchResultWithDocuments() { final Map<String, Object> doc1 = new HashMap<>(); doc1.put("_id", "doc1"); doc1.put("title", "Document 1"); final Map<String, Object> doc2 = new HashMap<>(); doc2.put("_id", "doc2"); doc2.put("title", "Document 2"); final SearchResult result = SearchResult.create().addDocument(doc1).addDocument(doc2).allRecordCount(2).build();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); final Map<String, String> attributes = new HashMap<>(); attributes.put("gidNumber", Integer.valueOf(id).toString()); requestBody.put("attributes", attributes); return requestBody; } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jun 19 07:14:01 GMT 2025 - 3.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSetMultimap.java
K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); builder.put(k1, v1); builder.put(k2, v2); builder.put(k3, v3); builder.put(k4, v4); builder.put(k5, v5); return builder.build(); } // looking for of() with > 5 entries? Use the builder instead. /** Returns a new {@link Builder}. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 19 22:57:35 GMT 2026 - 26.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> documentList = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Doc1"); Map<String, Object> doc2 = new HashMap<>(); doc2.put("title", "Doc2"); Map<String, Object> doc3 = new HashMap<>(); doc3.put("title", "Doc3"); documentList.add(doc1); documentList.add(doc2); documentList.add(doc3);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
CONTRIBUTING.md
It is the work of hundreds of contributors. We appreciate your help! ## Before filing an issue If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker. ## Filing issues
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Mar 29 22:00:27 GMT 2023 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
public void test_hasConditionQuery_withMultipleConditions() { // Test with multiple conditions testParams.conditions.put(SearchRequestParams.AS_Q, new String[] { "search term" }); testParams.conditions.put(SearchRequestParams.AS_FILETYPE, new String[] { "doc" }); testParams.conditions.put(SearchRequestParams.AS_NQ, new String[] { "exclude" }); assertTrue(searchRequestParams.hasConditionQuery()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 26.5K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java
p1.put("vegetables", List.of("#", "# List of vegetables", "#"), List.of(" potatoes")); MavenProperties p2 = new MavenProperties(); p2.put( "fruits", List.of("#", "# List of good fruits", "#"), List.of(" apple, banana, pear")); p2.put("trees", "fir, oak, maple");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 09 14:29:03 GMT 2026 - 16.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/dict/KuromojiTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("segmentation", "segment"); requestBody.put("reading", "reading"); requestBody.put("pos", "pos"); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("segmentation", "new_segment");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 2.5K bytes - Click Count (0)