- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 333 for paid (0.02 sec)
-
internal/s3select/jstream/decoder.go
} // check for proceeding surrogate pair c = d.next() if !utf16.IsSurrogate(r) || c != '\\' { d.scratch.addRune(r) goto scan } if c = d.next(); c != 'u' { d.scratch.addRune(r) goto scan_esc } r2 := d.u4() if r2 < 0 { return "", d.mkError(ErrSyntax, "in unicode escape sequence") } // write surrogate pair d.scratch.addRune(utf16.DecodeRune(r, r2))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 13.5K bytes - Viewed (0) -
docs_src/metadata/tutorial001.py
* **Create users** (_not implemented_). * **Read users** (_not implemented_). """ app = FastAPI( title="ChimichangApp", description=description, summary="Deadpool's favorite app. Nuff said.", version="0.0.1", terms_of_service="http://example.com/terms/", contact={ "name": "Deadpoolio the Amazing", "url": "http://x-force.example.com/contact/",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 805 bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.idl
* * typedef struct _SID { * UCHAR Revision; * UCHAR SubAuthorityCount; * SID_IDENTIFIER_AUTHORITY IdentifierAuthority; * [size_is(SubAuthorityCount)] ULONG SubAuthority[*]; * } SID, *PSID; */ typedef struct { uint8_t revision; uint8_t sub_authority_count; uint8_t identifier_authority[6]; [size_is(sub_authority_count)] uint32_t sub_authority[*]; } sid_t;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.idl
* * typedef struct _SID { * UCHAR Revision; * UCHAR SubAuthorityCount; * SID_IDENTIFIER_AUTHORITY IdentifierAuthority; * [size_is(SubAuthorityCount)] ULONG SubAuthority[*]; * } SID, *PSID; */ typedef struct { uint8_t revision; uint8_t sub_authority_count; uint8_t identifier_authority[6]; [size_is(sub_authority_count)] uint32_t sub_authority[*]; } sid_t;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-module.xml
KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project> <modelVersion>4.0.0</modelVersion> <artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <packaging>pom</packaging> <modules> <module>child</module> <module>child</module> </modules>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1015 bytes - Viewed (0) -
docs/erasure/README.md
## Why is Erasure Code useful?
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 4.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt
} } } /** * @return the source file and it's source root */ fun sourceFileAndSourceRootFor(sourceFilePath: String): Pair<File, File> = sourceRoots.asSequence() .map { it.resolve(sourceFilePath) to it } .firstOrNull { it.first.isFile }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 4K bytes - Viewed (0) -
guava/src/com/google/common/graph/MutableNetwork.java
* * <p>If {@code edge} already connects an endpoint pair equal to {@code endpoints}, then this * method will have no effect. * * @return {@code true} if the network was modified as a result of this call * @throws IllegalArgumentException if {@code edge} already exists in the graph and connects some * other endpoint pair that is not equal to {@code endpoints}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 4.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
assertStringHash(0xb5a4be05, "ABCDefGHI\u0799", UTF_8); assertStringHash(0xfc5ba834, "毎月1日,毎週月曜日", UTF_8); assertStringHash(0x8a5c3699, "surrogate pair: \uD83D\uDCB0", UTF_8); assertStringHash(0, "", UTF_16LE); assertStringHash(0x288418e4, "k", UTF_16LE); assertStringHash(0x5a0cb7c3, "hell", UTF_16LE); assertStringHash(0xd7c31989, "hello", UTF_16LE);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:29:46 UTC 2024 - 8.3K bytes - Viewed (0)