- Sort Score
- Num 10 results
- Language All
Results 1571 - 1580 of 2,219 for check (0.02 seconds)
-
docs/ko/docs/alternatives.md
**자동 API 문서화**의 초기 사례 중 하나였고, 이것이 특히 **FastAPI**를 "찾게 된" 첫 아이디어 중 하나였습니다. /// note | 참고 Django REST Framework는 Tom Christie가 만들었습니다. **FastAPI**의 기반이 되는 Starlette와 Uvicorn을 만든 사람과 동일합니다. /// /// check | **FastAPI**에 영감을 준 것 자동 API 문서화 웹 사용자 인터페이스를 제공하기. /// ### [Flask](https://flask.palletsprojects.com) { #flask } Flask는 "microframework"로, Django에 기본으로 포함된 데이터베이스 통합이나 여러 기능들을 포함하지 않습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 26.3K bytes - Click Count (0) -
docs/fr/docs/index.md
Vous pouvez en savoir plus dans la [documentation de la CLI FastAPI](https://fastapi.tiangolo.com/fr/fastapi-cli/). </details> ### Vérifier { #check-it } Ouvrez votre navigateur à l'adresse [http://127.0.0.1:8000/items/5?q=somequery](http://127.0.0.1:8000/items/5?q=somequery). Vous verrez la réponse JSON : ```JSON {"item_id": 5, "q": "somequery"} ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 23.8K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
WeakReference<ServiceManagerState> stateReference = new WeakReference<>(state); for (Service service : copy) { service.addListener(new ServiceListener(service, stateReference), directExecutor()); // We check the state after adding the listener as a way to ensure that our listener was added // to a NEW service. checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 33.2K bytes - Click Count (1) -
guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
assertEquals(6, queue.size()); assertEquals(8, queue.capacity()); assertEquals(42, queue.maximumSize); assertThat(queue.comparator()).isEqualTo(SOME_COMPARATOR); } // TODO: tests that check the weird interplay between expected size, // maximum size, size of initial contents, default capacity... private static void checkNatural(MinMaxPriorityQueue<Integer> queue) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 13:11:08 GMT 2026 - 36.2K bytes - Click Count (0) -
docs/ko/docs/index.md
기본적으로 `fastapi dev`는 로컬 개발을 위해 auto-reload가 활성화된 상태로 시작됩니다. 자세한 내용은 [FastAPI CLI 문서](https://fastapi.tiangolo.com/ko/fastapi-cli/)에서 확인할 수 있습니다. </details> ### 확인하기 { #check-it } 브라우저로 [http://127.0.0.1:8000/items/5?q=somequery](http://127.0.0.1:8000/items/5?q=somequery)를 열어보십시오. 아래의 JSON 응답을 볼 수 있습니다: ```JSON {"item_id": 5, "q": "somequery"} ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 23.4K bytes - Click Count (0) -
docs/uk/docs/tutorial/path-params.md
Ви можете оголосити тип параметра шляху у функції, використовуючи стандартні анотації типів Python: {* ../../docs_src/path_params/tutorial002_py310.py hl[7] *} У цьому випадку `item_id` оголошено як `int`. /// check | Перевірте Це дасть вам підтримку редактора всередині функції з перевірками помилок, автодоповненням тощо. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 14K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/FluentIterableTest.java
Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4)))); } @SuppressWarnings({ "deprecation", // test of deprecated method // We need to test that from(FluentIterable) really is just a null check. "InlineMeInliner", }) public void testFrom_alreadyFluentIterable() { FluentIterable<Integer> iterable = FluentIterable.from(asList(1)); assertThat(FluentIterable.from(iterable)).isSameInstanceAs(iterable);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 31.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
// Wait for completion with longer timeout indexUpdater.join(3000); assertFalse(errorOccurred.get()); // Thread may still be alive in test environment, just check no errors // // Thread may still be alive in test environment // assertFalse(indexUpdater.isAlive()); } // Test updateDocument with boost matcher @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry(); if (firstEntry == null || lastEntry == null) { /* * Either both are null or neither is: Either the set is empty, or it's not. But we check both * to make the nullness checker happy. */ throw new NoSuchElementException(); } return Range.create(firstEntry.getValue().lowerBound, lastEntry.getValue().upperBound); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 32.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterators.java
} @Override @ParametricNullness public E next() { if (!hasPeeked) { return iterator.next(); } // The cast is safe because of the hasPeeked check. E result = uncheckedCastNullableTToT(peekedElement); hasPeeked = false; peekedElement = null; return result; } @Override public void remove() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0)