- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 352 for Instant (0.06 seconds)
-
android/guava-tests/test/com/google/common/collect/MapsTest.java
NullPointerException.class, () -> Maps.toMap((Iterable<String>) strings, Functions.constant("foo"))); } public void testToMapWithNullValues() { Iterable<String> strings = ImmutableList.of("one", "two", "three"); assertThrows(NullPointerException.class, () -> Maps.toMap(strings, Functions.constant(null))); } private static final ImmutableBiMap<Integer, String> INT_TO_STRING_MAP =Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 22:56:33 GMT 2025 - 62.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
buf.append(filename.replaceAll("\\.\\.+", "")); return buf.toString(); } /** * Returns the execution type identifier for Python jobs. * * @return the execution type constant for Python jobs */ @Override protected String getExecuteType() { return Constants.EXECUTE_TYPE_PYTHON; }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
*/ public class ApiAdminDocumentsAction extends FessApiAdminAction { // =================================================================================== // Constant // private static final Logger logger = LogManager.getLogger(ApiAdminSearchlistAction.class); // =================================================================================== // ConstructorCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0) -
docs/de/docs/fastapi-cli.md
``` </div> Das Kommandozeilenprogramm namens `fastapi` ist das **FastAPI CLI**. FastAPI CLI nimmt den Pfad zu Ihrem Python-Programm (z. B. `main.py`), erkennt automatisch die `FastAPI`-Instanz (häufig `app` genannt), bestimmt den korrekten Importprozess und stellt sie dann bereit. Für die Produktion würden Sie stattdessen `fastapi run` verwenden. 🚀
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 02 17:32:56 GMT 2025 - 5K bytes - Click Count (0) -
src/test/java/jcifs/smb/WinErrorTest.java
} @Test @DisplayName("Constants: values match Windows error codes") void constants_have_expected_values() { // Ensure each public constant has its documented numeric value (happy path) assertAll(() -> assertEquals(0, WinError.ERROR_SUCCESS), () -> assertEquals(5, WinError.ERROR_ACCESS_DENIED),Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.4K bytes - Click Count (0) -
docs/fr/docs/deployment/manually.md
conçu pour Django Channels. ## Machine serveur et programme serveur Il y a un petit détail sur les noms à garder à l'esprit. 💡 Le mot "**serveur**" est couramment utilisé pour désigner à la fois l'ordinateur distant/cloud (la machine physique ou virtuelle) et également le programme qui s'exécute sur cette machine (par exemple, Uvicorn).
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 5.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
// Message below is checked for in the MNG-2199 core IT. problems.add(new ModelProblemCollectorRequest(Severity.FATAL, Version.V31) .setMessage("Version must be a constant") .setLocation(childModel.getLocation(""))); } else { if (rawChildVersionReferencesParent(rawChildModelVersion)) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
transaction.name = "\\MAILSLOT\\browse"; assertEquals("\\MAILSLOT\\browse", transaction.name, "Transaction name should be changeable"); } @Test @DisplayName("Test default buffer size constant") void testBufferSizeConstant() { assertEquals(0xFFFF, SmbComTransaction.TRANSACTION_BUF_SIZE, "TRANSACTION_BUF_SIZE should be 0xFFFF"); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java
assertEquals(0, unicodeHash.length); // ANSI hash always returns 24 bytes assertEquals(24, ansiHash.length); } // Test ANONYMOUS constant @Test void testAnonymousConstant() { assertNotNull(NtlmPasswordAuthentication.ANONYMOUS); assertEquals("", NtlmPasswordAuthentication.ANONYMOUS.getDomain());
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java
* {@link QuantilesBenchmark}. These algorithms each calculate either a single quantile or multiple * quantiles. All algorithms modify the dataset they are given (the cost of a copy to avoid this * will be constant across algorithms). * * @author Pete Gillin * @since 20.0 */ @NullUnmarked enum QuantilesAlgorithm { /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 7.1K bytes - Click Count (0)