- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 334 for conversion (0.06 sec)
-
docs/en/docs/index.md
* <abbr title="also known as: serialization, parsing, marshalling">Conversion</abbr> of input data: coming from the network to Python data and types. Reading from: * JSON. * Path parameters. * Query parameters. * Cookies. * Headers. * Forms. * Files.
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/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
descrField.setAccessible(true); String descr = (String) descrField.get(null); assertEquals("WrLeh\u0000B13BWz\u0000", descr); // Verify ASCII conversion byte[] descrBytes = descr.getBytes("ASCII"); assertNotNull(descrBytes); assertEquals(13, descrBytes.length); // WrLeh(5) + null(1) + B13BWz(6) + null(1) = 13 } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
ENV BAZEL_VS "C:\Program Files\Microsoft Visual Studio\2022\BuildTools" ENV BAZEL_VC "C:\Program Files\Microsoft Visual Studio\2022\Community\VC" # Environment variables to prevent auto-conversion of Linux-like paths to Windows paths. # This is necessary as some paths end up invalid/mangled. ENV MSYS_NO_PATHCONV 1 ENV MSYS2_ARG_CONV_EXCL *
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/es/docs/alternatives.md
### <a href="https://marshmallow.readthedocs.io/en/stable/" class="external-link" target="_blank">Marshmallow</a>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 25.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} } /** * Stores a child URL in the crawling queue with duplicate host handling. * This method applies duplicate host conversion before storing the URL. * * @param childUrl the child URL to store * @param parentUrl the parent URL that referenced this child URL * @param weight the weight/priority of the child URL
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
That means that any value read in Python from an environment variable will be a `str`, and any conversion to a different type or any validation has to be done in code. ## Pydantic `Settings` { #pydantic-settings }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Functions.java
* can use {@link com.google.common.collect.Maps#asConverter Maps.asConverter} instead to get a * function that also supports reverse conversion. * * <p>If you are okay with {@code null} being returned for an unrecognized key (instead of an * exception being thrown), you can use the method reference {@code map::get} instead. Note that
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
// Decode fileBothDirectoryInfo.decode(buffer, 0, buffer.length); // Verify - when wire format is 0, readTime returns a negative value due to the 1601-1970 conversion assertEquals(0, fileBothDirectoryInfo.getNextEntryOffset()); assertEquals(0, fileBothDirectoryInfo.getFileIndex());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
assertSame(mockName, nbtAddress.getName()); } @Test void testGetAddress() { // Test getAddress for correct byte array conversion mockName = new Name(mockConfig, "TEST", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
doc/go_spec.html
channel is closed and empty. </p> <h3 id="Conversions">Conversions</h3> <p> A conversion changes the <a href="#Types">type</a> of an expression to the type specified by the conversion. A conversion may appear literally in the source, or it may be <i>implied</i> by the context in which an expression appears. </p> <p> An <i>explicit</i> conversion is an expression of the form <code>T(x)</code>
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0)