- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 132 for program (0.04 sec)
-
docs/ru/llm-prompt.md
* PR (meaning GitHub pull request): пулл-реквест (add `запрос на изменение` if clarification is needed) * run (meaning run the code): запустить (or `прогнать` if it's about testing the program) * to reach users: донести до пользователей (or `привлечь внимание пользователей` in the promotion context) * body (meaning HTTP request body): тело запроса * body (meaning HTTP response body): тело ответа
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Oct 06 11:09:58 UTC 2025 - 6K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
/// ## Run your code with your debugger { #run-your-code-with-your-debugger } Because you are running the Uvicorn server directly from your code, you can call your Python program (your FastAPI application) directly from the debugger. --- For example, in Visual Studio Code, you can: * Go to the "Debug" panel. * "Add configuration...". * Select "Python"Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 2.4K bytes - Viewed (0) -
README.md
invalid requests. Example Limitations * Does not allow GET with a body. * Cache is not an interface with alternative implementations. Get a URL --------- This program downloads a URL and prints its contents as a string. [Full source][get_example]. ```java OkHttpClient client = new OkHttpClient(); String run(String url) throws IOException { Request request = new Request.Builder()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Oct 30 21:39:59 UTC 2025 - 9.5K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/META-INF/NOTICE.vm
is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in...Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Sep 10 19:27:25 UTC 2022 - 5.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ListenableFutureTask.java
long timeoutNanos = unit.toNanos(timeout); if (timeoutNanos <= OverflowAvoidingLockSupport.MAX_NANOSECONDS_THRESHOLD) { return super.get(timeout, unit); } // Waiting 68 years should be enough for any program. return super.get( min(timeoutNanos, OverflowAvoidingLockSupport.MAX_NANOSECONDS_THRESHOLD), NANOSECONDS); } /** Internal implementation detail used to invoke the listeners. */ @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
import jcifs.SmbPipeHandle; import jcifs.SmbPipeResource; import jcifs.internal.smb1.com.SmbComNTCreateAndX; import jcifs.internal.smb1.com.SmbComNTCreateAndXResponse; /** * This class will allow a Java program to read and write data to Named * Pipes and Transact NamedPipes. * * <p> * There are three Win32 function calls provided by the Windows SDK * that are important in the context of using jCIFS. They are: * * <ul>
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EnumHashBiMap.java
* TODO: cpovirk - Pre-size the HashMap based on the number of enum values? (But *not* based on * the number of entries in the map, as that makes it easy for hostile inputs to trigger lots of * allocation—not that any program should be deserializing hostile inputs to begin with!) */ setDelegates(new EnumMap<>(keyTypeOrObjectUnderJ2cl), new HashMap<>()); Serialization.populateMap(this, stream); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 15:50:50 UTC 2025 - 5.2K bytes - Viewed (0) -
docs/ru/docs/deployment/concepts.md
Далее рассмотрим концепции, связанные с программой, которая запускает ваш реальный API (например, Uvicorn). ## Программа и процесс { #program-and-process } Мы часто будем говорить о работающем "**процессе**", поэтому полезно чётко понимать, что это значит и чем отличается от "**программы**". ### Что такое программа { #what-is-a-program } Словом **программа** обычно называют разные вещи: * **Код**, который вы пишете, то есть **Python‑файлы**.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 29.6K bytes - Viewed (0) -
docs/es/llm-prompt.md
--- For the next terms, use the following translations: * framework: framework (do not translate to "marco") * performance: rendimiento * program (verb): programar * code (verb): programar * type hints: anotaciones de tipos * type annotations: anotaciones de tipos * autocomplete: autocompletado * completion (in the context of autocompletion): autocompletado * feature: funcionalidad
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java
} @Test @DisplayName("Happy path: iterates entries, fetchMore(), then closes with FindClose2") void iteratesAndFetchesMoreThenCloses() throws Exception { // Arrange: program send() to simulate first, next, next(NO_MORE_FILES) List<String[]> batches = new ArrayList<>(); batches.add(new String[] { ".", "..", "a", "b" }); // first batch, dot entries filteredRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0)