Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for chop (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_request_body_parameters_media_type.py

    class Product(BaseModel):
        name: str
        price: float
    
    
    class Shop(BaseModel):
        name: str
    
    
    @app.post("/products")
    async def create_product(data: Product = Body(media_type=media_type, embed=True)):
        pass  # pragma: no cover
    
    
    @app.post("/shops")
    async def create_shop(
        data: Shop = Body(media_type=media_type),
        included: list[Product] = Body(default=[], media_type=media_type),
    ):
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  2. docs/en/data/translators.yml

      avatarUrl: https://avatars.githubusercontent.com/u/20477587?u=c5184dab6d021733d10c8f975b20e391856303d6&v=4
      url: https://github.com/jackleeio
    choi-haram:
      login: choi-haram
      count: 2
      avatarUrl: https://avatars.githubusercontent.com/u/62204475?v=4
      url: https://github.com/choi-haram
    imtiaz101325:
      login: imtiaz101325
      count: 2
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Dec 01 06:27:43 GMT 2025
    - 19.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("シェ", new String[] { "sye", "she" });
    
            map.put("チャ", new String[] { "tya", "cha" });
            map.put("チュ", new String[] { "tyu", "chu" });
            map.put("チョ", new String[] { "tyo", "cho" });
            map.put("チェ", new String[] { "tye", "che" });
    
            map.put("ニャ", new String[] { "nya" });
            map.put("ニュ", new String[] { "nyu" });
            map.put("ニョ", new String[] { "nyo" });
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 17 14:28:21 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

            urlFilter.addInclude(".*\\$price=\\d+.*");
            urlFilter.addExclude(".*\\[\\].*");
    
            assertTrue(urlFilter.match("https://example.com/?page=1"));
            assertTrue(urlFilter.match("https://shop.com/item?$price=100"));
            assertFalse(urlFilter.match("https://example.com/array[]"));
        }
    
        /**
         * Test case sensitivity in patterns
         */
        public void test_caseSensitivity() {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Wed Sep 03 14:42:53 GMT 2025
    - 19K bytes
    - Click Count (0)
  5. src/cmd/asm/internal/asm/testdata/riscv64.s

    	CAND	X9, X8					// 658c
    	COR	X9, X8					// 458c
    	CXOR	X9, X8					// 258c
    	CSUB	X9, X8					// 058c
    	CADDW	X9, X8					// 259c
    	CSUBW	X9, X8					// 059c
    
    	// 26.5.5: Compressed NOP Instruction
    	CNOP						// 0100
    
    	// 26.5.6: Compressed Breakpoint Instruction
    	CEBREAK						// 0290
    
    	// 28.4.1: Address Generation Instructions (Zba)
    	ADDUW		X10, X11, X12			// 3b86a508
    	ADDUW		X10, X11			// bb85a508
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Nov 13 12:17:37 GMT 2025
    - 73.7K bytes
    - Click Count (0)
  6. RELEASE.md

     *   Added utility `tf.keras.utils.FeatureSpace`, a one-stop shop for structured data preprocessing and encoding.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Oct 28 22:27:41 GMT 2025
    - 740.4K bytes
    - Click Count (3)
  7. src/cmd/asm/internal/asm/testdata/riscv64validation.s

    	CSUBW	X10, X11, X12				// ERROR "rd must be the same as rs1"
    	CSUBW	X5, X11					// ERROR "expected integer prime register in rs2"
    	CSUBW	X10, X5					// ERROR "expected integer prime register in rd"
    	CNOP	X10					// ERROR "expected no register in rs2"
    	CEBREAK	X10					// ERROR "expected no register in rs2"
    
    	//
    	// "V" Standard Extension for Vector Operations, Version 1.0
    	//
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Nov 13 12:17:37 GMT 2025
    - 42.1K bytes
    - Click Count (0)
  8. docs/en/docs/release-notes.md

    * 🌐 Fix Korean translation for `docs/ko/docs/index.md`. PR [#11296](https://github.com/tiangolo/fastapi/pull/11296) by [@choi-haram](https://github.com/choi-haram).
    * 🌐 Add Korean translation for `docs/ko/docs/about/index.md`. PR [#11299](https://github.com/tiangolo/fastapi/pull/11299) by [@choi-haram](https://github.com/choi-haram).
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 19:06:15 GMT 2025
    - 586.7K bytes
    - Click Count (0)
Back to Top