Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SET (0.1 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

            this.fileId = fileId;
        }
    
    
        /**
         * @param infoType
         *            the infoType to set
         */
        public final void setInfoType ( byte infoType ) {
            this.infoType = infoType;
        }
    
    
        /**
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public final void setFileInfoClass ( byte fileInfoClass ) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac.kerberos;
    
    
    import java.security.Key;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Set;
    
    import javax.security.auth.Subject;
    import javax.security.auth.kerberos.KerberosKey;
    import javax.security.auth.kerberos.KeyTab;
    import javax.security.auth.login.LoginContext;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

    
        /**
         * @param fileInformationClass
         *            the fileInformationClass to set
         */
        public void setFileInformationClass ( byte fileInformationClass ) {
            this.fileInformationClass = fileInformationClass;
        }
    
    
        /**
         * @param queryFlags
         *            the queryFlags to set
         */
        public void setQueryFlags ( byte queryFlags ) {
            this.queryFlags = queryFlags;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 6K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
          uses: actions/setup-java@v2
          with:
            java-version: '11'
            distribution: 'temurin'
        - name: Build with Maven
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 12:23:46 UTC 2021
    - 574 bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

            this.digest.reset();
    
            // zero out signature field
            int index = offset + SIGNATURE_OFFSET;
            for ( int i = 0; i < SIGNATURE_LENGTH; i++ )
                data[ index + i ] = 0;
    
            // set signed flag
            int oldFlags = SMBUtil.readInt4(data, offset + 16);
            int flags = oldFlags | ServerMessageBlock2.SMB2_FLAGS_SIGNED;
            SMBUtil.writeInt4(flags, data, offset + 16);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 4.9K bytes
    - Viewed (0)
Back to top