- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 867 for encode (0.05 sec)
-
src/main/java/jcifs/dcerpc/ndr/NdrHyper.java
public long value; public NdrHyper ( long value ) { this.value = value; } @Override public void encode ( NdrBuffer dst ) throws NdrException { dst.enc_ndr_hyper(this.value); } @Override public void decode ( NdrBuffer src ) throws NdrException { this.value = src.dec_ndr_hyper(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrLong.java
public int value; public NdrLong ( int value ) { this.value = value; } @Override public void encode ( NdrBuffer dst ) throws NdrException { dst.enc_ndr_long(this.value); } @Override public void decode ( NdrBuffer src ) throws NdrException { this.value = src.dec_ndr_long(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrSmall.java
public int value; public NdrSmall ( int value ) { this.value = value & 0xFF; } @Override public void encode ( NdrBuffer dst ) throws NdrException { dst.enc_ndr_small(this.value); } @Override public void decode ( NdrBuffer src ) throws NdrException { this.value = src.dec_ndr_small(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
internal/logger/logrotate.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.8K bytes - Viewed (0) -
tests/test_tutorial/test_custom_request_and_route/test_tutorial001.py
client = TestClient(app) @pytest.mark.parametrize("compress", [True, False]) def test_gzip_request(compress): n = 1000 headers = {} body = [1] * n data = json.dumps(body).encode() if compress: data = gzip.compress(data) headers["Content-Encoding"] = "gzip" headers["Content-Type"] = "application/json" response = client.post("/sum", content=data, headers=headers)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Nov 13 14:26:09 UTC 2022 - 886 bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrSmall.java
public class NdrSmall extends NdrObject { public int value; public NdrSmall(int value) { this.value = value & 0xFF; } public void encode(NdrBuffer dst) throws NdrException { dst.enc_ndr_small(value); } public void decode(NdrBuffer src) throws NdrException { value = src.dec_ndr_small(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.3K bytes - Viewed (0) -
fastapi/encoders.py
Convert any object to something that can be encoded in JSON. This is used internally by FastAPI to make sure anything you return can be encoded as JSON before it is sent to the client. You can also use it yourself, for example to convert objects before saving them in a database that supports only JSON. Read more about it in the [FastAPI docs for JSON Compatible Encoder](https://fastapi.tiangolo.com/tutorial/encoder/).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 21:56:59 UTC 2024 - 10.8K bytes - Viewed (0) -
docs/pt/docs/advanced/websockets.md
Se você precisa de algo fácil de integrar com o FastAPI, mas que seja mais robusto, suportado por Redis, PostgreSQL ou outros, verifique o <a href="https://github.com/encode/broadcaster" class="external-link" target="_blank">encode/broadcaster</a>. /// ## Mais informações Para aprender mais sobre as opções, verifique a documentação do Starlette para:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 12:20:59 UTC 2024 - 5.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/error/redirect.jsp
redirectPage.append("/login/?type=logout&code=" + statusCode); response.sendRedirect(redirectPage.toString()); } else if("badRequest".equals(type)) { redirectPage.append("/error/badrequest/"); response.sendRedirect(redirectPage.toString()); } else if(!"badAuth".equals(type)) { redirectPage.append("/error/notfound/?url="); redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/error/redirect.jsp
redirectPage.append("/login/?type=logout&code=" + statusCode); response.sendRedirect(redirectPage.toString()); } else if("badRequest".equals(type)) { redirectPage.append("/error/badrequest/"); response.sendRedirect(redirectPage.toString()); } else if(!"badAuth".equals(type)) { redirectPage.append("/error/notfound/?url="); redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0)