- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for gcc_version (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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 Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Jun 08 16:12:05 GMT 2025 - 3.4K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+periodic+bwc.yml
- job-description: "Testing of the Elasticsearch %BRANCH% branch backwards compatibility matrix.\n" - matrix-yaml-file: ".ci/bwcVersions" - matrix-variable: BWC_VERSION
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 440 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: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.9K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+packaging-upgrade-tests.yml
name: os values: - centos-8-packaging - ubuntu-20.04-packaging - axis: type: yaml filename: ".ci/bwcVersions" name: "BWC_VERSION" builders: - inject: properties-file: '.ci/java-versions.properties' properties-content: | JAVA_HOME=$HOME/.java/$ES_BUILD_JAVACreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 10 19:43:38 GMT 2021 - 1.9K 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 Apr 07 12:39:13 GMT 2026 - 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: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2K 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 Apr 07 12:39:13 GMT 2026 - 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: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 22 16:14:44 GMT 2021 - 584 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: Sun Apr 05 00:10:12 GMT 2026 - 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: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 6.3K bytes - Click Count (0)