Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for SET (0.07 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

        }
    
    
        /**
         * @param flags
         *            the flags to set
         */
        public void setFlags ( int flags ) {
            this.flags = flags;
        }
    
    
        /**
         * @param maxInputResponse
         *            the maxInputResponse to set
         */
        public void setMaxInputResponse ( int maxInputResponse ) {
            this.maxInputResponse = maxInputResponse;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSeek.java

        /**
         * @param fid
         *            the fid to set
         */
        public void setFid ( int fid ) {
            this.fid = fid;
        }
    
    
        /**
         * @param mode
         *            the mode to set
         */
        public final void setMode ( int mode ) {
            this.mode = mode;
        }
    
    
        /**
         * @param offset
         *            the offset to set
         */
        public final void setOffset ( long offset ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K 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. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

         */
        @Override
        public final Integer getOverrideTimeout () {
            return this.overrideTimeout;
        }
    
    
        /**
         * @param overrideTimeout
         *            the overrideTimeout to set
         */
        public final void setOverrideTimeout ( Integer overrideTimeout ) {
            this.overrideTimeout = overrideTimeout;
        }
    
    
        /**
         * 
         * @return create response
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbWatchHandle.java

     * 
     * 
     * @author mbechler
     *
     */
    public interface SmbWatchHandle extends AutoCloseable, Callable<List<FileNotifyInformation>> {
    
        /**
         * Get the next set of changes
         * 
         * Will block until the server returns a set of changes that match the given filter. The file will be automatically
         * opened if it is not and should be closed with {@link #close()} when no longer
         * needed.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * ?? According to spec this is a reserved bit and must be set to zero
         */
        public static final int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000;
    
        /**
         * ?? According to spec this is NTLMSSP_NEGOTIATE_IDENTIFY
         * 
         * If set, requests an identify level token
         */
        public static final int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/NtlmMessage.java

         * @return A <code>boolean</code> indicating whether the flag is set.
         */
        public boolean getFlag ( int flag ) {
            return ( getFlags() & flag ) != 0;
        }
    
    
        /**
         * Sets or clears the specified flag.
         * 
         * @param flag
         *            The flag to set/clear (i.e.,
         *            <code>NTLMSSP_NEGOTIATE_OEM</code>).
         * @param value
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmAuthenticator.java

    public abstract class NtlmAuthenticator {
    
        private static NtlmAuthenticator auth;
    
        private String url;
        private SmbAuthException sae;
    
    
        /**
         * Set the default <tt>NtlmAuthenticator</tt>. Once the default authenticator is set it cannot be changed. Calling
         * this metho again will have no effect.
         * 
         * @param a
         */
    
        public synchronized static void setDefault ( NtlmAuthenticator a ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  9. .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)
  10. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        }
    
    
        /**
         * @param notifyFlags
         *            the notifyFlags to set
         */
        public void setNotifyFlags ( int notifyFlags ) {
            this.notifyFlags = notifyFlags;
        }
    
    
        /**
         * @param completionFilter
         *            the completionFilter to set
         */
        public void setCompletionFilter ( int completionFilter ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
Back to top