Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,924 for Booleans (0.05 sec)

  1. src/test/java/jcifs/internal/RequestTest.java

                return errorCode;
            }
    
            @Override
            public boolean verifySignature(byte[] buffer, int i, int size) {
                return true;
            }
    
            @Override
            public boolean isVerifyFailed() {
                return false;
            }
    
            @Override
            public boolean isError() {
                return errorCode != 0;
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

         */
        @NotThreadSafe
        class ProjectBuilderRequestBuilder {
            Session session;
            RequestTrace trace;
            Path path;
            Source source;
            boolean allowStubModel;
            boolean recursive;
            boolean processPlugins = true;
            List<RemoteRepository> repositories;
    
            ProjectBuilderRequestBuilder() {}
    
            /**
             * Sets the Maven session for this request.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Invokable.java

      /** See {@link java.lang.reflect.AccessibleObject#setAccessible(boolean)}. */
      public final void setAccessible(boolean flag) {
        accessibleObject.setAccessible(flag);
      }
    
      /** See {@link java.lang.reflect.AccessibleObject#trySetAccessible()}. */
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      public final boolean trySetAccessible() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ImmediateFuture.java

                      + listener
                      + " with executor "
                      + executor,
                  e);
        }
      }
    
      @Override
      public boolean cancel(boolean mayInterruptIfRunning) {
        return false;
      }
    
      // TODO(lukes): Consider throwing InterruptedException when appropriate.
      @Override
      @ParametricNullness
      public V get() {
        return value;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            assertEquals(Boolean.TRUE, DocumentUtil.getValue(doc, "boolTrue", Boolean.class));
    
            doc.put("boolFalse", false);
            assertEquals(Boolean.FALSE, DocumentUtil.getValue(doc, "boolFalse", Boolean.class));
    
            doc.put("boolStr", "anything");
            assertEquals(Boolean.FALSE, DocumentUtil.getValue(doc, "boolStr", Boolean.class));
        }
    
        public void test_unsupported_type_conversion() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

            Boolean testValue = true;
            OptionalEntity<Boolean> result = OptionalUtil.ofNullable(testValue);
    
            assertNotNull(result);
            assertTrue(result.isPresent());
            assertEquals(Boolean.TRUE, result.get());
        }
    
        public void test_ofNullable_withFalseBoolean() {
            Boolean testValue = false;
            OptionalEntity<Boolean> result = OptionalUtil.ofNullable(testValue);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        private int allRecordCount;
    
        /** The total number of pages in the result set. */
        private int allPageCount;
    
        /** Whether a previous page exists. */
        private boolean existPrePage;
    
        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for navigation. */
        private List<Integer> pageNumberList;
    
        /** The number of records to display per page. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

      @JvmField val serverNoContextTakeover: Boolean = false,
      /**
       * True if the agreed upon extensions or parameters contained values unrecognized by OkHttp.
       * Typically this indicates that the client will need to close the web socket with code 1010.
       */
      @JvmField val unknownValues: Boolean = false,
    ) {
      fun noContextTakeover(clientOriginated: Boolean): Boolean =
        if (clientOriginated) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/SynchronizedDequeTest.java

        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.removeAll(collection);
        }
    
        @Override
        public boolean isEmpty() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.isEmpty();
        }
    
        @Override
        public boolean contains(Object object) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
    
            final boolean isSmbUrl = url.startsWith("smb:") || url.startsWith("smb1:");
            final boolean isFtpUrl = url.startsWith("ftp:");
            final boolean isSmbOrFtpUrl = isSmbUrl || isFtpUrl;
    
            // replacing url with mapping data
            url = ComponentUtil.getPathMappingHelper().replaceUrl(url);
    
            final boolean isHttpUrl = url.startsWith("http:") || url.startsWith("https:");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top