Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsPrimary (0.1 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

            this.bufDataStart = 0;
            this.isPrimary = this.hasMore = true;
            this.parametersDone = this.dataDone = false;
        }
    
    
        @Override
        public boolean hasMoreElements () {
            return this.errorCode == 0 && this.hasMore;
        }
    
    
        @Override
        public SmbComTransactionResponse nextElement () {
            if ( this.isPrimary ) {
                this.isPrimary = false;
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

        byte subCommand;
        boolean hasMore = true;
        boolean isPrimary = true;
        byte[] txn_buf;
    
        /* for doNetEnum and doFindFirstNext */
        int status;
        int numEntries;
        FileEntry[] results;
    
        SmbComTransactionResponse() {
            txn_buf = null;
        }
    
        void reset() {
            super.reset();
            bufDataStart = 0;
            isPrimary = hasMore = true; 
            parametersDone = dataDone = false;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

            asyncManager.async(new ConcurrentAsyncCall() {
                @Override
                public void callback() {
                    runnable.run();
                }
    
                @Override
                public boolean asPrimary() {
                    return true; // mail is primary business
                }
            });
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top