- Sort Score
- Num 10 results
- Language All
Results 2851 - 2860 of 3,272 for value0 (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
} } static String writeFilterPreset(Project project) { def preset = project.providers.gradleProperty('bin.cmp.report.severity.filter').getOrElse('All levels') return """<input id="filter-preset" type="hidden" value="$preset" />"""
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Dec 30 10:14:25 GMT 2025 - 8.9K bytes - Click Count (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
assertEquals(qualifier, artifactVersion.getQualifier(), parsed + "check qualifier"); assertEquals(version, artifactVersion.toString(), "check " + version + " string value"); } @Test void testVersionParsing() { checkVersionParsing("1", 1, 0, 0, 0, null); checkVersionParsing("1.2", 1, 2, 0, 0, null); checkVersionParsing("1.2.3", 1, 2, 3, 0, null);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 9.6K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
* @return the options optional. It will be absent if {@link #parsingFailed()} return {@code true}. */ @Nonnull Optional<Options> options(); /** * This method returns "verbose" option value derived from multiple places: CLI options, but also CI detection, * if applicable. */ default boolean effectiveVerbose() { return options().isPresent() && options().orElseThrow().verbose().orElse(false)Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 6.7K bytes - Click Count (0) -
cmd/auth-handler.go
// hijacking the policies. We need to make sure that this is // based on admin credential such that token cannot be decoded // on the client side and is treated like an opaque value. claims, err := auth.ExtractClaims(token, secret) if err != nil { if subtle.ConstantTimeCompare([]byte(secret), []byte(globalActiveCred.SecretKey)) == 1 { return nil, errAuthentication }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 25.4K bytes - Click Count (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
* encode/decode operation. */ public class DcerpcMessageTest { /** * A trivial concrete subclass used for testing. It simply writes a * single small value in {@code encode_in} and reads it in * {@code decode_out}. */ private static class TestMessage extends DcerpcMessage { int decodedValue = 0; TestMessage() { /* nothing */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7K bytes - Click Count (0) -
cmd/last-minute.go
case sizeLessThan1GiB: return "LESS_THAN_1_GiB" case sizeGreaterThan1GiB: return "GREATER_THAN_1_GiB" default: return "unknown" } } // AccElem holds information for calculating an average value type AccElem struct { Total int64 Size int64 N int64 } // Add a duration to a single element. func (a *AccElem) add(dur time.Duration) { if dur < 0 { dur = 0 } a.Total += int64(dur)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Jul 05 17:40:45 GMT 2023 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
assertEquals("Email should have exactly one @ character", 1, supportEmail.split("@", -1).length - 1); // Specific value check assertEquals("******@****.***", supportEmail); assertEquals("******@****.***", techEmail); } @Test public void test_emailTypoFix_supportEmail() throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt
MappedRange.Constant(rangeStart, mapping.type) } else -> { error("unexpected mapping type: ${mapping.type}") } } } for (sectionList in result.values) { mergeAdjacentDeltaMappedRanges(sectionList) } return result.toMap() } /** * Modifies [ranges] to combine any adjacent [MappedRange.InlineDelta] of same size to single entry.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
assertEquals("image/jpeg", mimeMap.getMimeType("jpg", customDefault)); } @ParameterizedTest @DisplayName("Should handle various default values") @ValueSource(strings = { "text/unknown", "application/x-unknown", "custom/type", "" }) void testVariousDefaultValues(String defaultValue) throws IOException {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-multiple-params.md
} ``` /// note | 注意 儘管 `item` 的宣告方式與先前相同,現在預期它會位於 body 內,且鍵為 `item`。 /// **FastAPI** 會自動從請求中進行轉換,讓參數 `item` 收到對應內容,`user` 亦同。 它會對複合資料進行驗證,並在 OpenAPI 結構與自動文件中如此描述。 ## Body 中的單一值 { #singular-values-in-body } 就像你可以用 `Query` 與 `Path` 為查詢與路徑參數定義額外資訊一樣,**FastAPI** 也提供對應的 `Body`。 例如,延伸前述模型,你可以決定在相同的 Body 中,除了 `item` 與 `user` 外,還要有另一個鍵 `importance`。 如果直接這樣宣告,因為它是單一值,**FastAPI** 會將其視為查詢參數。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.6K bytes - Click Count (0)