- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 137 for numeral (0.05 sec)
-
src/test/java/jcifs/smb1/UniAddressTest.java
} @ParameterizedTest @ValueSource(strings = { "123456", "007", "999" }) void isAllDigitsTrueForPureNumeric(String numeric) { assertTrue(UniAddress.isAllDigits(numeric)); } @ParameterizedTest @ValueSource(strings = { "12a", "abc", "123 " }) void isAllDigitsFalseForNonNumeric(String nonNumeric) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/es/docs/deployment/docker.md
Si ejecutas **múltiples procesos por contenedor**, tendrás que asegurarte de que el número de procesos iniciados no **consuma más memoria** de la que está disponible. ## Pasos Previos Antes de Comenzar y Contenedores
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:15:52 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
/** * Channel is being closed */ CLOSING(7); private final int value; ChannelState(int value) { this.value = value; } /** * Get the numeric value of this state * * @return state value */ public int getValue() { return value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/en/docs/tutorial/response-status-code.md
/// ## About HTTP status codes { #about-http-status-codes } /// note If you already know what HTTP status codes are, skip to the next section. /// In HTTP, you send a numeric status code of 3 digits as part of the response. These status codes have a name associated to recognize them, but the important part is the number. In short:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4K bytes - Viewed (0) -
docs/pt/docs/deployment/versions.md
/// tip | Dica O "PATCH" é o último número, por exemplo, em `0.2.3`, a versão PATCH é `3`. /// Logo, você deveria conseguir fixar a versão, como: ```txt fastapi>=0.45.0,<0.46.0 ``` Mudanças significativas e novos recursos são adicionados em versões "MINOR". /// tip | Dica O "MINOR" é o número que está no meio, por exemplo, em `0.2.3`, a versão MINOR é `2`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/resources/fess_label_pl.properties
labels.user_surname=Nazwisko labels.surame=Nazwisko labels.user_mail=Adres e-mail labels.mail=Adres e-mail labels.user_employeeNumber=Numer pracownika labels.employeeNumber=Numer pracownika labels.user_telephoneNumber=Numer telefonu labels.telephoneNumber=Numer telefonu labels.user_homePhone=Telefon (domowy) labels.homePhone=Telefon (domowy) labels.user_homePostalAddress=Adres pocztowy (domowy)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 44.6K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoConstantsTest.java
assertEquals(e.getValue(), f.get(null), e.getKey() + " value mismatch"); } } @Test @DisplayName("OID values have valid dotted numeric format") void oidFormat() { assertAll(() -> assertTrue(OID_PATTERN.matcher(SpnegoConstants.SPNEGO_MECHANISM).matches(), "Invalid OID: SPNEGO_MECHANISM"),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComWriteResponseTest.java
buf[1] = 0x02; // count = 512 in little-endian resp.readParameterWordsWireFormat(buf, 0); String str = resp.toString(); assertTrue(str.contains("count=512"), "toString should include numeric count"); } @Test public void testReturnFromReadParameterWordsWireFormatIs8() { // ensure the method returns 8 as claimed byte[] buf = new byte[12]; buf[0] = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-params-str-validations.md
/// note | Observação Tenha em mente que neste caso, o FastAPI não irá validar os conteúdos da lista. Por exemplo, um `List[int]` iria validar (e documentar) que os contéudos da lista são números inteiros. Mas apenas `list` não. /// ## Declarando mais metadados Você pode adicionar mais informações sobre o parâmetro.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
* * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It * is not guaranteed to return zero when the dataset consists of the same value multiple times, * due to numerical errors. However, it is guaranteed never to return a negative result. * * <h3>Non-finite values</h3> * * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0)