Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for 28 (0.02 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    	AND	R0>>28, R1, R2       // 202e01e0
    	AND	R0<<28, R1, R2       // 002e01e0
    	AND	R0->28, R1, R2       // 402e01e0
    	AND	R0@>28, R1, R2       // 602e01e0
    	AND.S	R0>>28, R1, R2       // 202e11e0
    	AND.S	R0<<28, R1, R2       // 002e11e0
    	AND.S	R0->28, R1, R2       // 402e11e0
    	AND.S	R0@>28, R1, R2       // 602e11e0
    	AND	R0<<28, R1           // 001e01e0
    	AND	R0>>28, R1           // 201e01e0
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-multiple-params.md

    ```Python
    q: str | None = None
    ```
    
    For example:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="28"
    {!> ../../docs_src/body_multiple_params/tutorial004_an_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="28"
    {!> ../../docs_src/body_multiple_params/tutorial004_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="29"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/RangeTest.java

        assertEquals(Range.atMost(8), range.span(Range.atMost(2)));
    
        // adjacent below
        assertEquals(Range.closed(2, 8), range.span(Range.closedOpen(2, 4)));
        assertEquals(Range.atMost(8), range.span(Range.lessThan(4)));
    
        // overlap below
        assertEquals(Range.closed(2, 8), range.span(Range.closed(2, 6)));
        assertEquals(Range.atMost(8), range.span(Range.atMost(6)));
    
        // enclosed with same start
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. istioctl/pkg/install/k8sversion/version_test.go

    		GitVersion: "v1.25",
    	}
    	version1_26 = &version.Info{
    		Major:      "1",
    		Minor:      "26",
    		GitVersion: "v1.26",
    	}
    	version1_28 = &version.Info{
    		Major:      "1",
    		Minor:      "28",
    		GitVersion: "v1.28",
    	}
    	version1_19RC = &version.Info{
    		Major:      "1",
    		Minor:      "19",
    		GitVersion: "v1.19.5-rc.0",
    	}
    	version1_17GKE = &version.Info{
    		Major:      "1",
    		Minor:      "17+",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 30 21:50:50 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. cmd/storagemetric_string.go

    	_ = x[storageMetricReadAll-23]
    	_ = x[storageMetricStatInfoFile-24]
    	_ = x[storageMetricReadMultiple-25]
    	_ = x[storageMetricDeleteAbandonedParts-26]
    	_ = x[storageMetricDiskInfo-27]
    	_ = x[storageMetricDeleteBulk-28]
    	_ = x[storageMetricRenamePart-29]
    	_ = x[storageMetricReadParts-30]
    	_ = x[storageMetricLast-31]
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Aug 12 08:38:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tests/test_custom_middleware_exception.py

    @router.post("/middleware")
    def run_middleware(file: UploadFile = File(..., description="Big File")):
        return {"message": "OK"}
    
    
    app.include_router(router)
    app.add_middleware(ContentSizeLimitMiddleware, max_content_size=2**8)
    
    
    client = TestClient(app)
    
    
    def test_custom_middleware_exception(tmp_path: Path):
        default_pydantic_max_size = 2**16
        path = tmp_path / "test.txt"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Aug 25 21:44:40 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(24)).isEqualTo("%18")
        assertThat(formEncode(25)).isEqualTo("%19")
        assertThat(formEncode(26)).isEqualTo("%1A")
        assertThat(formEncode(27)).isEqualTo("%1B")
        assertThat(formEncode(28)).isEqualTo("%1C")
        assertThat(formEncode(29)).isEqualTo("%1D")
        assertThat(formEncode(30)).isEqualTo("%1E")
        assertThat(formEncode(31)).isEqualTo("%1F")
        // Browsers use '+' for space.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. internal/kms/secret-key.go

    	if req.Name != s.keyID {
    		return DEK{}, ErrKeyNotFound
    	}
    	associatedData, err := req.AssociatedData.MarshalText()
    	if err != nil {
    		return DEK{}, err
    	}
    
    	const randSize = 28
    	random, err := sioutil.Random(randSize)
    	if err != nil {
    		return DEK{}, err
    	}
    	iv, nonce := random[:16], random[16:]
    
    	prf := hmac.New(sha256.New, s.key)
    	prf.Write(iv)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. docs/em/docs/how-to/extending-openapi.md

    ```Python hl_lines="13-14  24-25"
    {!../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### 🔐 👩‍🔬
    
    🔜 👆 💪 ❎ `.openapi()` 👩‍🔬 ⏮️ 👆 🆕 🔢.
    
    ```Python hl_lines="28"
    {!../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### ✅ ⚫️
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/UrlEscapersTest.java

         * when the escaper is made compliant with RFC 2396, but that's a good thing (just change them
         * to assertUnescaped).
         */
        assertEscaping(e, "%21", '!');
        assertEscaping(e, "%28", '(');
        assertEscaping(e, "%29", ')');
        assertEscaping(e, "%7E", '~');
        assertEscaping(e, "%27", '\'');
    
        // Plus for spaces
        assertEscaping(e, "+", ' ');
        assertEscaping(e, "%2B", '+');
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 17:53:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top