- Sort Score
- Result 10 results
- Languages All
Results 1921 - 1930 of 7,967 for aclass (0.09 sec)
-
guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
import java.io.DataInput; import java.io.DataOutputStream; import java.io.EOFException; import java.io.IOException; import junit.framework.TestCase; /** * Test class for {@link LittleEndianDataInputStream}. * * @author Chris Nokleberg */ public class LittleEndianDataInputStreamTest extends TestCase { private byte[] data; @Override protected void setUp() throws Exception { super.setUp();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 4.8K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
.session((Session) java.lang.reflect.Proxy.newProxyInstance( Session.class.getClassLoader(), new Class[] {Session.class}, (Object proxy, Method method, Object[] args) -> { if ("getSystemProperties".equals(method.getName())) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/em/docs/how-to/custom-request-and-route.md
/// danger đ "đ§" â. đĨ đ âļī¸ âŽī¸ **FastAPI** đ đĒ đ đļ đ đ. /// ## âī¸ đŧ âī¸ đŧ đ: * đ đĢ-đģ đ¨ đĒ đģ (â <a href="https://msgpack.org/index.html" class="external-link" target="_blank">`msgpack`</a>). * đ đ-đ đ¨ đĒ. * đ đ¨ đ đ¨ đĒ. ## đ đ đ¨ đĒ đĸ âĄī¸ đ â â âī¸ đ `Request` đŋ đ đ đ¨. & `APIRoute` đŋ âī¸ đ đ đ¨ đ. ### â đ `GzipRequest` đ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.6K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt
import javax.xml.parsers.DocumentBuilderFactory /** * Fetch the latest AGP versions and write a properties file. * Never up-to-date, non-cacheable. */ @UntrackedTask(because = "Not worth tracking") abstract class UpdateAgpVersions : DefaultTask() { @get:Internal abstract val comment: Property<String> @get:Internal abstract val minimumSupportedMinor: Property<String> @get:Internal
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 02 09:17:07 UTC 2023 - 5.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ForwardingRequestBody.kt
package okhttp3 import java.io.IOException import okio.BufferedSink open class ForwardingRequestBody(delegate: RequestBody?) : RequestBody() { private val delegate: RequestBody fun delegate(): RequestBody { return delegate } override fun contentType(): MediaType? { return delegate.contentType() } @Throws(IOException::class) override fun contentLength(): Long { return delegate.contentLength()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0) -
docs_src/openapi_callbacks/tutorial001.py
from fastapi import APIRouter, FastAPI from pydantic import BaseModel, HttpUrl app = FastAPI() class Invoice(BaseModel): id: str title: Union[str, None] = None customer: str total: float class InvoiceEvent(BaseModel): description: str paid: bool class InvoiceEventReceived(BaseModel): ok: bool invoices_callback_router = APIRouter()
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat May 14 11:59:59 UTC 2022 - 1.3K bytes - Viewed (0) -
docs_src/generate_clients/tutorial002.py
from typing import List from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str price: float class ResponseMessage(BaseModel): message: str class User(BaseModel): username: str email: str @app.post("/items/", response_model=ResponseMessage, tags=["items"]) async def create_item(item: Item):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Mar 04 22:02:18 UTC 2022 - 755 bytes - Viewed (0) -
docs/ko/docs/deployment/server-workers.md
## ęĩŦëėŊęŗŧ ė ëšėŊ ė¤ėší기 <div class="termy"> ```console $ pip install "uvicorn[standard]" gunicorn ---> 100% ``` </div> ė´ ëĒ ë šė´ë ė ëšėŊ `standard` ėļę° í¨í¤ė§(ėĸė ėąëĨė ėí)ė ęĩŦëėŊė ė¤ėší ę˛ė ëë¤. ## ęĩŦëėŊė ė ëšėŊ ėėģ¤ė í¨ęģ ė¤íí기 ė¤ėš í ęĩŦëėŊ ė¤íí기: <div class="termy"> ```console $ gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:80
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
import jcifs.dcerpc.ndr.NdrException; import jcifs.dcerpc.ndr.NdrObject; import jcifs.dcerpc.ndr.NdrSmall; @SuppressWarnings ( "all" ) public class lsarpc { public static String getSyntax () { return "12345778-1234-abcd-ef00-0123456789ab:0.0"; } public static class LsarQosInfo extends NdrObject { public int length; public short impersonation_level; public byte context_mode;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 35.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/SortedLists.java
* key, the choice of {@link KeyAbsentBehavior} decides which index is returned. * * <p>This method runs in log(n) time on random-access lists, which offer near-constant-time * access to each list element. * * @param list the list to be searched. * @param key the value to be searched for. * @param comparator the comparator by which the list is ordered.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11K bytes - Viewed (0)