Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,924 for Booleans (0.09 sec)

  1. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

        private static final Logger log = LoggerFactory.getLogger(SMB1SigningDigest.class);
    
        private final MessageDigest digest;
        private byte[] macSigningKey;
        private boolean bypass = false;
        private int updates;
        private int signSequence;
    
        /**
         * Constructs a signing digest with bypass option
         *
         * @param macSigningKey
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java

            when(request.getOverrideTimeout()).thenReturn(3000);
            when(request.allowChain(any())).thenReturn(true);
    
            // When
            boolean async = request.isResponseAsync();
            int size = request.size();
            Integer timeout = request.getOverrideTimeout();
            boolean canChain = request.allowChain(nextRequest);
    
            // Then
            assertTrue(async);
            assertEquals(100, size);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      public class TestGuard extends Monitor.Guard {
        private volatile boolean satisfied;
    
        public TestGuard(boolean satisfied) {
          super(MonitorTestCase.this.monitor);
          this.satisfied = satisfied;
        }
    
        @Override
        public boolean isSatisfied() {
          return this.satisfied;
        }
    
        public void setSatisfied(boolean satisfied) {
          this.satisfied = satisfied;
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

        public void test_execute_allSuccess() {
            // Setup tracking variables
            final boolean[] deleteCrawlingInfoCalled = { false };
            final boolean[] deleteSearchLogCalled = { false };
            final boolean[] deleteJobLogCalled = { false };
            final boolean[] deleteUserInfoCalled = { false };
            final boolean[] updateJobLogStatusCalled = { false };
            final long[] crawlingInfoDeletedBeforeTime = { 0 };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

        }
    
        @Override
        public boolean equals(@Nullable Object object) {
          return standardEquals(object);
        }
    
        @Override
        public int hashCode() {
          return standardHashCode();
        }
    
        @Override
        public boolean add(E element) {
          return standardAdd(element);
        }
    
        @Override
        public boolean addAll(Collection<? extends E> collection) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
        @Override
        public void setDoInput(final boolean doInput) {
            this.connection.setDoInput(doInput);
            this.doInput = doInput;
        }
    
        @Override
        public boolean getDoInput() {
            return this.connection.getDoInput();
        }
    
        @Override
        public void setDoOutput(final boolean doOutput) {
            this.connection.setDoOutput(doOutput);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/SmbNegotiationResponse.java

         *
         * @return whether the server has signing enabled
         */
        boolean isSigningEnabled();
    
        /**
         * Checks whether the server requires SMB message signing.
         *
         * @return whether the server requires signing
         */
        boolean isSigningRequired();
    
        /**
         * Checks whether the server supports Distributed File System (DFS).
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. gradle/wrapper/gradle-wrapper.jar

    verifyDownloadChecks(String, java.io.File, String); public static boolean deleteDir(java.io.File); public static void unzip(java.io.File, java.io.File); public final void unzipLocal(java.io.File, java.io.File); public final void forceFetch(java.io.File, java.net.URI); } org/gradle/wrapper/Logger.class package org.gradle.wrapper; public final class Logger implements Appendable { public final boolean quiet; public void Logger(boolean); public final void log(String); public final Appendable append(CharSequence);...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptOptions.java

         *
         * @return an {@link Optional} containing the boolean value {@code true} if specified, or empty
         */
        Optional<Boolean> force();
    
        /**
         * Should imply "yes" to all questions.
         *
         * @return an {@link Optional} containing the boolean value {@code true} if specified, or empty
         */
        Optional<Boolean> yes();
    
        /**
         * Returns the list of encryption goals to be executed.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
        /** Indicates if a previous page exists. */
        private boolean existPrePage;
    
        /** Indicates if a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
        /** Page size for pagination. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top