- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for gcc_version (0.09 seconds)
-
buildscripts/checkdeps.sh
if ! check_minimum_version "${GIT_VERSION}" "${installed_git_version}"; then echo "Git version '${installed_git_version}' is not supported. Minimum supported version: ${GIT_VERSION}" exit 1 fi } main() { ## Check for supported arch assert_is_supported_arch ## Check for supported os assert_is_supported_os ## Check for Go environment
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Jun 08 16:12:05 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacTest.java
// Create PAC with unaligned buffer offset ByteArrayOutputStream baos = new ByteArrayOutputStream(); writeLittleEndianInt(baos, 1); // bufferCount writeLittleEndianInt(baos, PacConstants.PAC_VERSION); // version writeLittleEndianInt(baos, PacConstants.LOGON_INFO); // type writeLittleEndianInt(baos, 10); // size writeLittleEndianLong(baos, 25); // Unaligned offset (not multiple of 8)Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.9K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/tflite-other.md
- type: dropdown id: source attributes: label: Source description: Tensorflow installed from options: - source - binary validations: required: trueCreated: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Dec 29 22:28:29 GMT 2022 - 3.4K bytes - Click Count (0) -
.ci/bwcVersions
BWC_VERSION: - "7.0.0" - "7.0.1" - "7.1.0" - "7.1.1" - "7.2.0" - "7.2.1" - "7.3.0" - "7.3.1" - "7.3.2" - "7.4.0" - "7.4.1" - "7.4.2" - "7.5.0" - "7.5.1" - "7.5.2" - "7.6.0" - "7.6.1" - "7.6.2" - "7.7.0" - "7.7.1" - "7.8.0" - "7.8.1" - "7.9.0" - "7.9.1" - "7.9.2" - "7.9.3" - "7.10.0" - "7.10.1" - "7.10.2" - "7.11.0"
Created: Sun Dec 21 06:47:06 GMT 2025 - Last Modified: Wed Sep 22 16:14:44 GMT 2021 - 584 bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml
- type: dropdown id: source attributes: label: Source description: TensorFlow installed from options:Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Wed Jun 28 18:25:42 GMT 2023 - 3.7K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacConstantsTest.java
* This prevents accidental modification of these critical constants. */ @Test void testConstantValues() { // Verify the PAC version assertEquals(0, PacConstants.PAC_VERSION, "PAC_VERSION should be 0"); // Verify PAC buffer types assertEquals(1, PacConstants.LOGON_INFO, "LOGON_INFO should be 1"); assertEquals(2, PacConstants.CREDENTIAL_TYPE, "CREDENTIAL_TYPE should be 2");Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/jcifs/pac/PacConstants.java
* Defines buffer types and other constants used in PAC parsing and validation. */ public interface PacConstants { /** * PAC structure version number. */ int PAC_VERSION = 0; /** * Buffer type for user logon information. */ int LOGON_INFO = 1; /** * Buffer type for credential information. */ int CREDENTIAL_TYPE = 2; /**Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.4K bytes - Click Count (0) -
src/test/java/jcifs/pac/kerberos/KerberosPacAuthDataTest.java
DataOutputStream dos = new DataOutputStream(baos); // Write header with no buffers dos.writeInt(Integer.reverseBytes(0)); dos.writeInt(Integer.reverseBytes(PacConstants.PAC_VERSION)); byte[] noBufPac = baos.toByteArray(); PACDecodingException e = assertThrows(PACDecodingException.class, () -> { new KerberosPacAuthData(noBufPac, keys); });
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/java/jcifs/pac/Pac.java
throw new PACDecodingException("Empty PAC"); } int bufferCount = pacStream.readInt(); int version = pacStream.readInt(); if (version != PacConstants.PAC_VERSION) { throw new PACDecodingException("Unrecognized PAC version " + version); } for (int bufferIndex = 0; bufferIndex < bufferCount; bufferIndex++) {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.3K bytes - Click Count (0)