Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ads_id (0.03 seconds)

  1. src/test/java/jcifs/SIDTest.java

         */
        @Test
        void testByteArrayConstructorTooManySubAuthorities() {
            byte[] badSid = new byte[10];
            badSid[1] = 101; // sub_authority_count > 100
            assertThrows(RuntimeCIFSException.class, () -> new SID(badSid, 0));
        }
    
        /**
         * Test constructor that combines a domain SID and an RID.
         *
         * @throws SmbException if the SID string is invalid
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            testJvm.version,
            testJvm.vendor,
            buildJvm,
            expectedBucketNumber,
            arch,
            failStage,
        )
    
        fun asId(projectId: String): String = "${projectId}_$testCoveragePrefix"
    
        fun asId(model: CIBuildModel): String = asId(model.projectId)
    
        private val testCoveragePrefix
            get() = "${testType.name.toCamelCase().toCapitalized()}_$uuid"
    
        fun asConfigurationId(
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Nov 05 13:00:26 GMT 2025
    - 27.5K bytes
    - Click Count (0)
Back to Top