- Sort Score
- Result 10 results
- Languages All
Results 5071 - 5080 of 5,353 for Return (0.07 sec)
-
api/maven-api-plugin/src/main/mdo/plugin.mdo
<codeSegments> <codeSegment> <version>2.0.0+</version> <code><![CDATA[ public String getPluginLookupKey() { return groupId + ":" + artifactId; } public String getId() { return groupId + ":" + artifactId + ":" + version; } ]]></code> </codeSegment> </codeSegments> </class>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### ๐ ๐ ๐ ๐ ๐ โ ๐ `Dockerfile` โฎ๏ธ: ```{ .dockerfile .annotate } # (1) FROM python:3.9
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
cmd/bucket-handlers_test.go
for _, objectName := range objectNames { objectList = append(objectList, ObjectToDelete{ ObjectV: ObjectV{ ObjectName: objectName, }, }) } return objectList } getDeleteErrorList := func(objects []ObjectToDelete) (deleteErrorList []DeleteError) { for _, obj := range objects { deleteErrorList = append(deleteErrorList, DeleteError{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 39.8K bytes - Viewed (0) -
cmd/kms-handlers_test.go
} registerKMSRouter(adminTestBed.router) if enableKMS { GlobalKMS = kms.NewStub("default-test-key") } tearDown := func() { adminTestBed.TearDown() GlobalKMS = nil } return adminTestBed, tearDown } func buildKMSRequest(t *testing.T, method, path, accessKey, secretKey string, query map[string]string) *http.Request { if len(query) > 0 { queryVal := url.Values{}
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 22.3K bytes - Viewed (0) -
docs/ja/docs/async.md
```Python hl_lines="1" async def get_burgers(number: int): # ใใณใใผใฌใผใไฝๆใใใใใซ้ๅๆๅฆ็ใๅฎ่ก return burgers ``` ...`def` ใฎใใใใซ: ```Python hl_lines="2" # ้ๅๆใงใฏใชใ def get_sequential_burgers(number: int): # ใใณใใผใฌใผใไฝๆใใใใใซใทใผใฑใณใทใฃใซใชๅฆ็ใๅฎ่ก return burgers ``` `async def` ใไฝฟ็จใใใจใPythonใซใใฎ้ขๆฐๅ ใง `await` ๅผ (ใใฎ้ขๆฐใฎๅฎ่กใใไธๆๅๆญขโธใใใ็ตๆใๆปใใพใงไปใฎไฝใใๅฎ่ก๐ใใ) ใ่ช่ญใใชใใใฐใชใใชใใจไผใใใใจใใงใใพใใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 27.7K bytes - Viewed (0) -
docs/es/docs/deployment/docker.md
```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile Ahora, en el mismo directorio del proyecto, crea un archivo `Dockerfile` con:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:15:52 UTC 2025 - 31K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
private static final long serialVersionUID = 1L; @Override public Integer getSuggestSystemMonitorIntervalAsInteger() { return 60; } }; ComponentUtil.setFessConfig(mockConfig); } catch (Exception e) { // Ignore setup errors in test environment } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java
} @Test @DisplayName("Test readBytesWireFormat returns 0") void testReadBytesWireFormat() { request = new Smb2SetInfoRequest(mockConfig); byte[] buffer = new byte[256]; int bytesRead = request.readBytesWireFormat(buffer, 0); // This method should always return 0 as the request doesn't read responses assertEquals(0, bytesRead); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
Double.MAX_VALUE, Double.POSITIVE_INFINITY, Double.NaN, Float.MAX_VALUE, }; /** The notion of equality used by AtomicDoubleArray */ static boolean bitEquals(double x, double y) { return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y); } static void assertBitEquals(double x, double y) { assertEquals(Double.doubleToRawLongBits(x), Double.doubleToRawLongBits(y)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusRequestTest.java
NodeStatusRequest spyRequest = spy(nodeStatusRequest); doAnswer(invocation -> { // Verify hexCode is 0 during the call assertEquals(0x00, mockName.hexCode); return 40; }).when(spyRequest).writeQuestionSectionWireFormat(any(byte[].class), anyInt()); // Act spyRequest.writeBodyWireFormat(dst, 0); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0)