- Sort Score
- Result 10 results
- Languages All
Results 2311 - 2320 of 2,794 for B_value (0.04 sec)
-
src/main/webapp/WEB-INF/view/index.jsp
</button> </div> </fieldset> </div> </div> </main> <jsp:include page="footer.jsp" /> </la:form> <input type="hidden" id="contextPath" value="${contextPath}" /> <script src="${fe:url('/js/jquery-3.7.1.min.js')}"></script> <script src="${fe:url('/js/popper.min.js')}"></script> <script src="${fe:url('/js/bootstrap.min.js')}"></script>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 05:40:20 UTC 2025 - 7K bytes - Viewed (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);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 9.6K bytes - Viewed (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)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 6.7K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
ACTIVE(5), // Actively transferring data FAILED(6), // Connection failed CLOSING(7); // Closing connection private final int value; ChannelState(int value) { this.value = value; } } ``` ### 3.2 Channel Capabilities ```java public class Smb2ChannelCapabilities { // Multi-channel specific capabilities
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
docs/en/docs/tutorial/cookie-param-models.md
For example, if the client tries to send a `santa_tracker` cookie with a value of `good-list-please`, the client will receive an **error** response telling them that the `santa_tracker` <abbr title="Santa disapproves the lack of cookies. ๐ Okay, no more cookie jokes.">cookie is not allowed</abbr>: ```json {
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 08:55:32 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Predicate.java
* the License. */ package com.google.common.base; import com.google.common.annotations.GwtCompatible; import org.jspecify.annotations.Nullable; /** * Determines a true or false value for a given input; a pre-Java-8 version of {@link * java.util.function.Predicate java.util.function.Predicate}. * * <p>The {@link Predicates} class provides common predicates and related utilities. *Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Jun 18 15:22:00 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/handling-errors.md
"loc": [ "path", "item_id" ], "msg": "value is not a valid integer", "type": "type_error.integer" } ] } ``` ไปฅไธใฎใใใชใใญในใ็ใๅๅพใใพใ: ``` 1 validation error path -> item_id value is not a valid integer (type=type_error.integer) ``` #### `RequestValidationError`ใจ`ValidationError`
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
public String name; /** Search/filter parameter for data configuration handler name. */ public String handlerName; /** Search/filter parameter for data configuration boost value. */ public String boost; /** Search/filter parameter for data configuration availability status. */ public String available; /** Search/filter parameter for data configuration sort order. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
assertNotNull(clonedAfterWipe, "Cloned password should still exist"); assertArrayEquals("originalPassword".toCharArray(), clonedAfterWipe, "Cloned password should still have original value"); } @Test public void testEqualsWithPassword() { NtlmPasswordAuthenticator auth1 = new NtlmPasswordAuthenticator("DOMAIN", "user", "pass123");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
* * <p>{@code EqualsTester} will always check that every object it is given returns false from * {@code equals(null)}, so it is neither useful nor allowed to include a null value in any * equality group. */ @CanIgnoreReturnValue public EqualsTester addEqualityGroup(@Nullable Object @Nullable ... equalityGroup) { checkNotNull(equalityGroup);Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0)