Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,899 for Booleans (0.03 sec)

  1. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

      public NavigableSet<E> subSet(
          @ParametricNullness E fromElement,
          boolean fromInclusive,
          @ParametricNullness E toElement,
          boolean toInclusive) {
        return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive);
      }
    
      /**
       * A sensible definition of {@link #subSet(Object, boolean, Object, boolean)} in terms of the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFutureState.java

        implements ListenableFuture<V> {
      final boolean casListeners(@Nullable Listener expect, Listener update) {
        if (listeners == expect) {
          listeners = update;
          return true;
        }
        return false;
      }
    
      final @Nullable Listener gasListeners(Listener update) {
        Listener old = listeners;
        listeners = update;
        return old;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Feb 21 02:38:37 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        private Field field;
    
        private final BeanDesc beanDesc;
    
        private Constructor<?> stringConstructor;
    
        private Method valueOfMethod;
    
        private boolean readable = false;
    
        private boolean writable = false;
    
        private ParameterizedClassDesc parameterizedClassDesc;
    
        /**
         * Creates an instance of {@link PropertyDescImpl}.
         *
         * @param propertyName
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbEnumerationUtilTest.java

                SmbResource notAFile = mock(SmbResource.class);
    
                // Act
                boolean result = (boolean) invokePrivate(wrapper, "accept", new Class<?>[] { SmbResource.class }, notAFile);
    
                // Assert
                assertFalse(result);
                verify(delegate, never()).accept(any());
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

         */
        protected abstract boolean doDisconnect(boolean hard, boolean inUse) throws IOException;
    
        /**
         * Connect the transport
         *
         * @param timeout the maximum time to wait for the connection in milliseconds
         * @return whether the transport was connected
         * @throws TransportException if the connection fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java

        // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image
        final ProgressListener progressListener = new ProgressListener() {
          boolean firstUpdate = true;
    
          @Override public void update(long bytesWritten, long contentLength, boolean done) {
            if (done) {
              System.out.println("completed");
            } else {
              if (firstUpdate) {
                firstUpdate = false;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 4.2K bytes
    - Viewed (1)
  7. samples/tlssurvey/src/main/kotlin/okhttp3/survey/ssllabs/UserAgentCapabilities.kt

      val npnProtocols: List<String>,
      val platform: String?,
      val requiresSha2: Boolean,
      val signatureAlgorithms: List<Int>,
      val suiteIds: List<Int>,
      val suiteNames: List<String>,
      val supportsCompression: Boolean,
      val supportsNpn: Boolean,
      val supportsRi: Boolean,
      val supportsSni: Boolean,
      val supportsStapling: Boolean,
      val supportsTickets: Boolean,
      val userAgent: String?,
      val version: String,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt

       */
      fun hasNext(failedConnection: RealConnection? = null): Boolean
    
      /**
       * Returns true if the host and port are unchanged from when this was created. This is used to
       * detect if followups need to do a full connection-finding process including DNS resolution, and
       * certificate pin checks.
       */
      fun sameHostAndPort(url: HttpUrl): Boolean
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
        /** Flag indicating if there is a previous page. */
        private boolean existPrePage;
    
        /** Flag indicating if there is a next page. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
        /** 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
    - 7.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

         * @return true if enumeration is done, false otherwise
         */
        protected abstract boolean isDone();
    
        /**
         * Fetches more entries from the server.
         *
         * @return true if more entries were fetched, false otherwise
         * @throws CIFSException if an error occurs during fetching
         */
        protected abstract boolean fetchMore() throws CIFSException;
    
        /**
         * Gets the current batch of results.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top