- Sort Score
- Num 10 results
- Language All
Results 1541 - 1550 of 1,978 for operativos (1.27 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java
import java.util.Collection; import java.util.Collections; import java.util.List; import org.junit.Ignore; /** * A generic JUnit test which tests {@code retainAll} operations on a collection. Can't be invoked * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatibleCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 10.7K bytes - Click Count (0) -
docs/select/README.md
To enable Parquet set the environment variable `MINIO_API_SELECT_PARQUET=on`. ## Example using Python API ### 1. Prerequisites - Install MinIO Server from [here](https://docs.min.io/community/minio-object-store/operations/deployments/baremetal-deploy-minio-on-redhat-linux.html#procedure). - Familiarity with AWS S3 API. - Familiarity with Python and installing dependencies. ### 2. Install boto3
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 6.6K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java
import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.NavigableSet; import java.util.TreeSet; import org.junit.Ignore; /** * A generic JUnit test which tests operations on a NavigableSet. Can't be invoked directly; please * see {@code NavigableSetTestSuiteBuilder}. * * @author Jesse Wilson * @author Louis Wasserman */ @GwtIncompatible
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Nov 14 23:40:07 GMT 2024 - 8.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java
import java.util.Collection; import java.util.Collections; import java.util.List; import org.junit.Ignore; /** * A generic JUnit test which tests {@code retainAll} operations on a collection. Can't be invoked * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatibleCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 10.7K bytes - Click Count (0) -
cmd/testdata/xl-meta-merge.zip
deploying MinIO with Erasure Coding. For extended development and production, deploy MinIO with Erasure Coding enabled - specifically, with a *minimum* of 4 drives per MinIO server. See [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html#) for more complete documentation. ## Install from Source Use the following commands to compile and run a standalone MinIO server from source. Source installation is only intended for developers and advanced users. If...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Mar 08 17:50:48 GMT 2024 - 30.2K bytes - Click Count (0) -
docs/pt/docs/advanced/stream-data.md
O FastAPI entregará cada bloco de dados para `StreamingResponse` como está, não tentará convertê-lo para JSON nem nada semelhante. ### Funções de operação de rota não assíncronas { #non-async-path-operation-functions } Você também pode usar funções `def` normais (sem `async`) e usar `yield` da mesma forma. {* ../../docs_src/stream_data/tutorial001_py310.py ln[26:29] hl[27] *} ### Sem anotação { #no-annotation }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:13 GMT 2026 - 5.7K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
end end style V2 fill:#f9fff3 style V1 fill:#fff6f0 style V1Field fill:#fff6f0 style V2Field fill:#f9fff3 ``` 在某些情況下,你甚至可以在同一個 FastAPI 路徑操作(path operation)中同時使用 Pydantic v1 與 v2 模型: {* ../../docs_src/pydantic_v1_in_v2/tutorial003_an_py310.py hl[2:3,6,12,21:22] *} 在上面的範例中,輸入模型是 Pydantic v1,輸出模型(於 `response_model=ItemV2` 定義)是 Pydantic v2。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 4.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java
} }); } @Test @DisplayName("Should preserve IOException behavior") void testIOExceptionBehavior() { String message = "IO operation failed"; TransportException exception = new TransportException(message); // Test standard IOException methods assertEquals(message, exception.getMessage());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
docs/ko/docs/tutorial/server-sent-events.md
/// tip | 팁 Pydantic이 **Rust** 쪽에서 직렬화하므로, 반환 타입을 선언하지 않았을 때보다 훨씬 더 높은 **성능**을 얻을 수 있습니다. /// ### 비 async *경로 처리 함수* { #non-async-path-operation-functions } `async`가 없는 일반 `def` 함수도 사용할 수 있으며, 동일하게 `yield`를 사용할 수 있습니다. FastAPI가 이벤트 루프를 막지 않도록 올바르게 실행을 보장합니다. 이 경우 함수가 async가 아니므로 적절한 반환 타입은 `Iterable[Item]`입니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:56:39 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/UserServiceTest.java
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; /** * Unit tests for {@link UserService}. * Tests user service business logic including store, delete, and password operations. */ public class UserServiceTest extends UnitFessTestCase { private UserService userService; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 12.8K bytes - Click Count (0)