- Sort Score
- Num 10 results
- Language All
Results 1011 - 1020 of 1,344 for shore (0.1 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
executePlan(); } catch (Exception e) { step.status.compareAndSet(SKIPPED, FAILED); // Store the exception in the step for handling in the TEARDOWN phase step.exception = e; logger.debug("Stored exception for step {} to be handled in TEARDOWN phase", step, e);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<la:select property="sort" styleId="sortSearchOption" styleClass="form-control"> <option value=""> <la:message key="labels.search_result_select_sort" /> </option> <la:option value="score.desc"> <la:message key="labels.search_result_sort_score_desc" /> </la:option> <la:option value="filename.asc"> <la:message key="labels.search_result_sort_filename_asc" /> </la:option>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 14.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
for (int i = 11; i <= 20; i++) { Map<String, Object> doc = new HashMap<>(); doc.put("id", String.valueOf(i)); doc.put("title", "Document " + i); doc.put("score", 1.0 - (i * 0.01)); documents.add(doc); } searchRenderData.setDocumentItems(documents); searchRenderData.setSearchQuery("complex search query");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 23.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
final Path baseDir = Files.createDirectories(tempDir.resolve("vardata")); System.setProperty("fess.var.path", baseDir.toString()); // A directory that does NOT share the prefix final Path otherDir = Files.createDirectories(tempDir.resolve("other")); final File fileInOther = new File(otherDir.toFile(), "test.txt"); fileInOther.createNewFile();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/index.md
``` 如此一來,你只需撰寫一次共用程式碼,**FastAPI** 會替你的各個「路徑操作」呼叫它。 /// check | 檢查 注意,你不必建立特殊的類別並把它傳到 **FastAPI** 去「註冊」或做類似的事。 只要把它傳給 `Depends`,**FastAPI** 就知道該怎麼處理其餘的部分。 /// ## 共用 `Annotated` 依賴 { #share-annotated-dependencies } 在上面的範例中,可以看到有一點點的「重複程式碼」。 當你要使用 `common_parameters()` 這個依賴時,你得寫出完整的型別註解搭配 `Depends()`: ```Python commons: Annotated[dict, Depends(common_parameters)] ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.9K bytes - Click Count (0) -
docs/pt/docs/tutorial/dependencies/index.md
Você apenas envia para `Depends` e o **FastAPI** sabe como fazer o resto. /// ## Compartilhando dependências `Annotated` { #share-annotated-dependencies } Nos exemplos acima, você pode ver que existe uma pequena **duplicação de código**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.6K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java
} private static int findDefaultParallel(Project project) { // Since it costs IO to compute this, and is done at configuration time we want to cache this if possible // It's safe to store this in a static variable since it's just a primitive so leaking memory isn't an issue if (_defaultParallel == null) { File cpuInfoFile = new File("/proc/cpuinfo"); if (cpuInfoFile.exists()) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 17 10:02:58 GMT 2021 - 18.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 17.6K bytes - Click Count (0) -
src/bytes/buffer_test.go
if err != io.EOF { t.Errorf("ReadByte: got (%q, %v), want (%q, %v)", c, err, byte(0), io.EOF) } } } func TestLargeStringWrites(t *testing.T) { var buf Buffer limit := 30 if testing.Short() { limit = 9 } for i := 3; i < limit; i += 3 { s := fillString(t, "TestLargeWrites (1)", &buf, "", 5, testString) empty(t, "TestLargeStringWrites (2)", &buf, s, make([]byte, len(testString)/i)) }Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Nov 14 19:01:17 GMT 2025 - 19.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Multimaps.java
* returned by {@code factory}. Those objects should not be manually updated and they should not * use soft, weak, or phantom references. * * @param map place to store the mapping from each key to its corresponding values * @param factory supplier of new, empty collections that will each hold all values for a given * key * @throws IllegalArgumentException if {@code map} is not emptyCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 86K bytes - Click Count (0)