Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for rreturn (0.04 sec)

  1. guava/src/com/google/common/reflect/TypeResolver.java

              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
        private WildcardCapturer notForTypeVariable() {
          return new WildcardCapturer(id);
        }
    
        private @Nullable Type captureNullable(@Nullable Type type) {
          if (type == null) {
            return null;
          }
          return capture(type);
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

      @Deprecated
      @Override
      public boolean apply(@ParametricNullness T input) {
        return mightContain(input);
      }
    
      /**
       * Puts an element into this {@code BloomFilter}. Ensures that subsequent invocations of {@link
       * #mightContain(Object)} with the same element will always return {@code true}.
       *
       * @return true if the Bloom filter's bits changed as a result of this operation. If the bits
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

        }
    
        @Keep
        public Type[] getBounds() {
          return toArray(bounds);
        }
    
        @Keep
        public D getGenericDeclaration() {
          return genericDeclaration;
        }
    
        @Keep
        public String getName() {
          return name;
        }
    
        @Keep
        public String getTypeName() {
          return name;
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeResolver.java

              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
        private WildcardCapturer notForTypeVariable() {
          return new WildcardCapturer(id);
        }
    
        private @Nullable Type captureNullable(@Nullable Type type) {
          if (type == null) {
            return null;
          }
          return capture(type);
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/Types.java

        }
    
        @Keep
        public Type[] getBounds() {
          return toArray(bounds);
        }
    
        @Keep
        public D getGenericDeclaration() {
          return genericDeclaration;
        }
    
        @Keep
        public String getName() {
          return name;
        }
    
        @Keep
        public String getTypeName() {
          return name;
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TopKSelector.java

      public static <T extends Comparable<? super T>> TopKSelector<T> least(int k) {
        return least(k, Ordering.natural());
      }
    
      /**
       * Returns a {@code TopKSelector} that collects the lowest {@code k} elements added to it,
       * relative to the specified comparator, and returns them via {@link #topK} in ascending order.
       *
       * @throws IllegalArgumentException if {@code k < 0} or {@code k > Integer.MAX_VALUE / 2}
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

        assertLockHeld()
        if (executeCallCount > runCallCount) return // A thread is still starting.
    
        executeCallCount++
        backend.execute(this@TaskRunner, runnable)
      }
    
      fun newQueue(): TaskQueue {
        val name = this.withLock { nextQueueName++ }
        return TaskQueue(this, "Q$name")
      }
    
      /**
       * Returns a snapshot of queues that currently have tasks scheduled. The task runner does not
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

            return connection.socket()
          }
        }
    
        return null
      }
    
      private fun timeoutExit(cause: IOException?): IOException? {
        if (timeoutEarlyExit) return cause
        if (!timeout.exit()) return cause
    
        val e = InterruptedIOException("timeout")
        if (cause != null) e.initCause(cause)
        return e
      }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  9. README.md

    ```java
    import org.codelibs.core.convert.*;
    
    // Safe type conversions with null handling
    Integer value = IntegerConversionUtil.toInteger("123");        // Returns 123
    Integer nullValue = IntegerConversionUtil.toInteger(null);     // Returns null
    Boolean flag = BooleanConversionUtil.toBoolean("true");        // Returns true
    Date date = DateConversionUtil.toDate("2023-12-25", "yyyy-MM-dd");
    
    // Primitive conversions with default values
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

             * @return this builder for method chaining
             */
            public SearchConditionBuilder offset(final int offset) {
                this.offset = offset;
                return this;
            }
    
            /**
             * Sets the maximum number of results to return.
             *
             * @param size the maximum number of results
             * @return this builder for method chaining
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top