Search Options

Results per page
Sort
Preferred Languages
Advance

Results 721 - 730 of 2,158 for booleans (0.08 sec)

  1. guava/src/com/google/common/base/Predicate.java

       * {@code T}). Note that a {@code false} result from this method does not imply that the
       * predicates are known <i>not</i> to be interchangeable.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    
      @Override
      default boolean test(@ParametricNullness T input) {
        return apply(input);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ForwardingExecutorService.java

          throws InterruptedException, ExecutionException, TimeoutException {
        return delegate().invokeAny(tasks, timeout, unit);
      }
    
      @Override
      public boolean isShutdown() {
        return delegate().isShutdown();
      }
    
      @Override
      public boolean isTerminated() {
        return delegate().isTerminated();
      }
    
      @Override
      public void shutdown() {
        delegate().shutdown();
      }
    
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/MethodDesc.java

         */
        boolean isPublic();
    
        /**
         * {@literal static}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal static}メソッドの場合は{@literal true}
         */
        boolean isStatic();
    
        /**
         * {@literal final}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal final}メソッドの場合は{@literal true}
         */
        boolean isFinal();
    
        /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        assertTrue(service.shutDownCalled);
      }
    
      private class WaitOnRunService extends AbstractExecutionThreadService {
        private boolean startUpCalled = false;
        private boolean runCalled = false;
        private boolean shutDownCalled = false;
        private State expectedShutdownState = State.STOPPING;
    
        @Override
        protected void startUp() {
          assertFalse(startUpCalled);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

      private fun requestIsOneShot(
        e: IOException,
        userRequest: Request,
      ): Boolean {
        val requestBody = userRequest.body
        return (requestBody != null && requestBody.isOneShot()) ||
          e is FileNotFoundException
      }
    
      private fun isRecoverable(
        e: IOException,
        requestSendStarted: Boolean,
      ): Boolean {
        // If there was a protocol problem, don't recover.
        if (e is ProtocolException) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate().pollLastEntry();
        }
    
        @Override
        public NavigableMap<K, V> subMap(
            K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 22:09:38 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeConnection.java

        private final CIFSContext ctx;
        private final SmbTreeConnection delegate;
        private SmbTreeImpl tree;
        private volatile boolean treeAcquired;
        private volatile boolean delegateAcquired;
    
        private SmbTransportInternal exclusiveTransport;
        private boolean nonPooled;
    
        private final AtomicLong usageCount = new AtomicLong();
    
        private static final Random RAND = new Random();
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

         *            引数の並び
         * @param adjustNumber
         *            引数型が数値型の場合に引数を適合するように変換する場合は{@literal true}
         * @return 引数が引数型に適合する場合は{@literal true}
         */
        protected boolean isSuitable(final Class<?>[] paramTypes, final Object[] args, final boolean adjustNumber) {
            if (args == null) {
                return paramTypes.length == 0;
            }
            if (paramTypes.length != args.length) {
                return false;
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

              streamDependency: Int,
              weight: Int,
              exclusive: Boolean,
            ) {
              assertThat(streamDependency).isEqualTo(0)
              assertThat(weight).isEqualTo(256)
              assertThat(exclusive).isFalse()
            }
    
            override fun headers(
              inFinished: Boolean,
              streamId: Int,
              associatedStreamId: Int,
              headerBlock: List<Header>,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
    
        public boolean isChildScmConnectionInheritAppendPath() {
            return (getChildScmConnectionInheritAppendPath() != null) ? Boolean.parseBoolean(getChildScmConnectionInheritAppendPath()) : true;
        }
    
        public boolean isChildScmDeveloperConnectionInheritAppendPath() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top