Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,924 for booleans (0.04 sec)

  1. android/guava-testlib/test/com/google/common/testing/SerializableTesterTest.java

        @SuppressWarnings("EqualsHashCode")
        @Override
        public boolean equals(@Nullable Object other) {
          return (other instanceof ClassWhichIsAlwaysEqualButHasDifferentHashcodes);
        }
      }
    
      private static class ObjectWhichIsEqualButChangesClass implements Serializable {
        private static final long serialVersionUID = 1L;
    
        @Override
        public boolean equals(@Nullable Object other) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/NotifyResponseTest.java

            private byte[] rawPayload;
    
            // Response interface fields
            private boolean received = false;
            private int grantedCredits = 0;
            private int errorCode = 0;
            private boolean verifyFailed = false;
            private boolean error = false;
            private Exception exception;
            private Long expiration;
    
            public MockNotifyResponse(List<FileNotifyInformation> notifyInfo) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top