- Sort Score
- Result 10 results
- Languages All
Results 2181 - 2190 of 3,591 for Game (0.32 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
SMBUtil.writeInt2(0x20, ctx, ci + 2); // DataOffset ci += 4; SMBUtil.writeInt4(8, ctx, ci); // DataLength ci += 4; // Name bytes at 0x10 byte[] name = new byte[] { 'T', 'E', 'S', 'T' }; System.arraycopy(name, 0, ctx, 0x10, name.length); // Data bytes at 0x20 byte[] data = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 }; System.arraycopy(data, 0, ctx, 0x20, data.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmUtilTest.java
// Assert assertArrayEquals(h2, h1, "nTOWFv1 should return NT hash"); assertEquals(16, h1.length, "NT hash length is 16 bytes"); } @Test @DisplayName("nTOWFv2: overloads produce same result and domain affects key") void testNTOWFv2_overloadsAndDomainSensitivity() { // Arrange String domain = "Domain"; String user = "User"; String password = "password";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
docs/em/docs/features.md
def main(user_id: str): return user_id # A Pydantic model class User(BaseModel): id: int name: str joined: date ``` ๐ ๐ช โคด๏ธ โ๏ธ ๐: ```Python my_user: User = User(id=3, name="John Doe", joined="2018-07-19") second_user_data = { "id": 4, "name": "Mary", "joined": "2018-11-30", } my_second_user: User = User(**second_user_data) ``` /// info
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8K bytes - Viewed (0) -
docs/en/docs/advanced/openapi-callbacks.md
The process that happens when your API app calls the *external API* is named a "callback". Because the software that the external developer wrote sends a request to your API and then your API *calls back*, sending a request to an *external API* (that was probably created by the same developer).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
์๊ธฐ์ ๊ฐ์ ๋ฐฉ์์ผ๋ก "ํธ์ถ(์คํ)" ํ ์ ์๋ค๋ฉด "ํธ์ถ ๊ฐ๋ฅ"์ด ๋ฉ๋๋ค. ## ์์กด์ฑ์ผ๋ก์์ ํด๋์ค ํ์ด์ฌ ํด๋์ค์ ์ธ์คํด์ค๋ฅผ ์์ฑํ๊ธฐ ์ํด ์ฌ์ฉํ๋ ๊ฒ๊ณผ ๋์ผํ ๋ฌธ๋ฒ์ ์ฌ์ฉํ๋ค๋ ๊ฑธ ์ ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด: ```Python class Cat: def __init__(self, name: str): self.name = name fluffy = Cat(name="Mr Fluffy") ``` ์ด ๊ฒฝ์ฐ์ `fluffy`๋ ํด๋์ค `Cat`์ ์ธ์คํด์ค์ ๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ฐ๋ฆฌ๋ `fluffy`๋ฅผ ๋ง๋ค๊ธฐ ์ํด์ `Cat`์ "ํธ์ถ"ํ์ต๋๋ค. ๋ฐ๋ผ์, ํ์ด์ฌ ํด๋์ค๋ **ํธ์ถ ๊ฐ๋ฅ**ํฉ๋๋ค. ๊ทธ๋์ **FastAPI**์์๋ ํ์ด์ฌ ํด๋์ค๋ฅผ ์์กด์ฑ์ผ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.7K bytes - Viewed (0) -
ci/official/utilities/extract_resultstore_links.py
ElemTree.SubElement(properties, 'property', name='description', value=success_msg) if command: ElemTree.SubElement(properties, 'property', name='bazel_command', value=command) suite_specific = {'tests': str(len(result_store_dict)),
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0) -
src/main/resources/crawler_es+crawlerThread.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="fessCrawler"> <!-- Crawler Thread --> <component name="crawlerThread" class="org.codelibs.fess.crawler.FessCrawlerThread" instance="prototype" > </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jan 28 04:42:09 UTC 2016 - 342 bytes - Viewed (0) -
src/main/resources/crawler/log.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="fessCrawler"> <include path="crawler/container.xml" /> <component name="logHelper" class="org.codelibs.fess.helper.CrawlerLogHelper"> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Oct 11 06:51:14 UTC 2015 - 333 bytes - Viewed (0) -
docs/ja/docs/index.md
- 2 ใคใฎๅฏพ่ฉฑ็ใชใใญใฅใกใณใใฎWebใคใณใฟใผใใงใคในใ็ดๆฅๆไพใใพใใ --- ใพใ ่กจ้ข็ใช้จๅใซ่งฆใใใ ใใงใใใใใๅ จใฆใฎไป็ตใฟใฏๅใใฃใฆใใใฏใใงใใ ไปฅไธใฎ่กใๅคๆดใใฆใฟใฆใใ ใใ: ```Python return {"item_name": item.name, "item_id": item_id} ``` ...ไปฅไธใ: ```Python ... "item_name": item.name ... ``` ...ไปฅไธใฎใใใซ: ```Python ... "item_price": item.price ... ``` ...ใใใฆใใจใใฃใฟใๅฑๆงใ่ชๅ่ฃๅฎใใใใฎใฟใคใใ็ฅใๆนๆณใ็ขบ่ชใใฆใใ ใใใ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java
/** The regular canonical hostname that should be used */ @Required @Size(max = 1000) public String regularName; /** The duplicate hostname that should be redirected to the regular name */ @Required @Size(max = 1000) public String duplicateHostName; /** The sort order for displaying this duplicate host entry */ @Required @Min(value = 0) @Max(value = 2147483647)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)