Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 1,211 for checkOn (0.07 sec)

  1. src/main/java/jcifs/internal/smb2/lease/Smb2LeaseState.java

        private Smb2LeaseState() {
            // Utility class
        }
    
        /**
         * Check if state has read caching
         * @param state lease state
         * @return true if read caching is enabled
         */
        public static boolean hasReadCaching(int state) {
            return (state & SMB2_LEASE_READ_CACHING) != 0;
        }
    
        /**
         * Check if state has handle caching
         * @param state lease state
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 00:16:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbOperationException.java

            }
        }
    
        /**
         * Check if this exception is retryable
         *
         * @return true if the operation can be retried
         */
        public boolean isRetryable() {
            return errorCode.isRetryable() && retryPolicy != RetryPolicy.NO_RETRY;
        }
    
        /**
         * Check if retry should be attempted
         *
         * @param attemptNumber the current attempt number
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                // Validate that security buffer doesn't exceed available data
                if (hdrStart + securityBufferOffset < hdrStart || // Check for integer overflow
                        hdrStart + securityBufferOffset + securityBufferLength < 0 || // Check for integer overflow
                        hdrStart + securityBufferOffset + securityBufferLength > buffer.length) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/SmbComCloseTest.java

            // With a digest, the lastWriteTime should be written.
            // We can't verify the exact bytes without a real implementation of writeUTime,
            // but we can check that it's not zero.
            long writtenTime = SMBUtil.readInt4(dst, 2) & 0xFFFFFFFFL;
            // This is a weak check, but better than nothing.
            // A more robust test would require a real SMB1SigningDigest.
            assertTrue(writtenTime != 0 || lastWriteTime == 0);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *
         * @return <code>true</code> if the resource exists or is alive or
         *         <code>false</code> otherwise
         * @throws SmbException if an error occurs while checking existence
         */
    
        public boolean exists() throws SmbException {
    
            if (attrExpiration > System.currentTimeMillis()) {
                return isExists;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #
    map:{
        # example for implicit classification
        #; Flg = list:{
        #    ; map:{topComment=general boolean classification for every flg-column; codeType=Number}
        #    ; map:{code=1; name=True ; alias=Checked  ; comment=means yes; sisterCode=true}
        #    ; map:{code=0; name=False; alias=Unchecked; comment=means no ; sisterCode=false}
        #}
        # example for table classification
        #; MemberStatus = list:{
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       */
      protected void verify(List<E> elements) {}
    
      /** Executes the test. */
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      public final void test() {
        try {
          recurse(0);
        } catch (Exception e) { // sneaky checked exception
          throw new RuntimeException(Arrays.toString(stimuli), e);
        }
      }
    
      private void recurse(int level) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/documentMap.dfprop

        #  Does it check differences of column-def order?
        #  (except added or deleted columns)
        #
        #; isCheckColumnDefOrderDiff = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isCheckDbCommentDiff: (NotRequired - Default false)
        #  Does it check differences of table or column or others comment?
        #
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/separate-openapi-schemas.md

    ### Model for Output in Docs { #model-for-output-in-docs }
    
    You can check the output model in the docs too, **both** `name` and `description` are marked as **required** with a **red asterisk**:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image03.png">
    </div>
    
    ### Model for Input and Output in Docs { #model-for-input-and-output-in-docs }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

                current = current.getCause();
            }
            return buf.toString();
        }
    
        /**
         * Checks if a checkbox value represents an enabled state.
         * This method considers "on" and "true" (case-insensitive) as enabled values.
         *
         * @param value the checkbox value to check
         * @return true if the value represents an enabled checkbox, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top