Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for findtext (0.35 sec)

  1. docs/sts/client_grants/sts_element.py

                        ('Invalid XML provided for "{}" - erroring tag <{}>. '
                         'Message: {}').format(self.root_name, name, error.message)
                    )
            else:
                return self.element.findtext('sts:{}'.format(name), None, _STS_NS)
    
        def text(self):
            """Fetch the current node's text
    
            """
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java

            response.setSubCommand(SmbComTransaction.TRANS2_FIND_NEXT2);
    
            byte[] buffer = new byte[20];
            // numEntries (2 bytes) - sid is skipped for FIND_NEXT
            buffer[0] = 0x03;
            buffer[1] = 0x00;
            // isEndOfSearch (2 bytes)
            buffer[2] = 0x00; // end of search = false
            buffer[3] = 0x00;
            // eaErrorOffset (2 bytes)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

     */
    
    package jcifs.internal.smb1.trans2;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Trans2 FindNext2 request message for SMB1 directory enumeration continuation.
     * This class implements the TRANS2_FIND_NEXT2 transaction to retrieve subsequent
     * directory entries after a Trans2FindFirst2 request, supporting large directory listings.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java

            assertEquals(3, response.eaErrorOffset);
            assertEquals(4, response.lastNameOffset);
        }
    
        @Test
        void testReadParametersWireFormat_FindNext2() {
            // In FindNext2, sid is not read
            response.subCommand = SmbComTransaction.TRANS2_FIND_NEXT2;
            byte[] buffer = new byte[8];
            // numEntries = 2
            writeInt2(2, buffer, 0);
            // isEndOfSearch = false
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top