Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2181 - 2190 of 3,591 for Game (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top