Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,158 for Boolean (0.05 sec)

  1. android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java

        public abstract int gcdInt(int a, int b);
    
        public abstract long gcdLong(long a, long b);
    
        public abstract boolean noAddOverflow(int a, int b);
    
        public abstract boolean noAddOverflow(long a, long b);
    
        public abstract boolean noMulOverflow(int a, int b);
    
        public abstract boolean noMulOverflow(long a, long b);
      }
    
      private final int[] factorials = new int[ARRAY_SIZE];
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 6.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java

            this.logLevel = logLevel;
        }
    
        public boolean isDebugEnabled() {
            return DEBUG.equals(logLevel);
        }
    
        public boolean isInfoEnabled() {
            return INFO.equals(logLevel);
        }
    
        public boolean isWarnEnabled() {
            return WARN.equals(logLevel);
        }
    
        public boolean isErrorEnabled() {
            return ERROR.equals(logLevel);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

        }
    
      var protocolNegotiationEnabled: Boolean by delegate::protocolNegotiationEnabled
    
      @get:JvmName("protocols")
      var protocols: List<Protocol>
        get() = delegate.protocols
        set(value) {
          delegate.protocols = value
        }
    
      init {
        delegate.dispatcher = dispatcher.wrap()
      }
    
      private var started: Boolean = false
    
      @Synchronized override fun before() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

        private int fid, createAction, extFileAttributes, fileType, deviceState;
        private long creationTime, lastAccessTime, lastWriteTime, changeTime, allocationSize, endOfFile;
        private boolean directory;
        private boolean isExtended;
    
    
        /**
         * 
         * @param config
         */
        public SmbComNTCreateAndXResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/StringUtil.java

         */
        public static final boolean isEmpty(final String text) {
            return text == null || text.length() == 0;
        }
    
        /**
         * 文字列が<code>null</code>でも空文字列でもなければ<code>true</code>を返します。
         *
         * @param text
         *            文字列
         * @return 文字列が<code>null</code>でも空文字列でもなければ<code>true</code>
         */
        public static final boolean isNotEmpty(final String text) {
            return !isEmpty(text);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    final String configIndex = values[0];
                    final String configType = values[1];
    
                    final boolean isFessIndex = DOC_INDEX.equals(configIndex);
                    final String indexName;
                    if (isFessIndex) {
                        final boolean exists = existsIndex(fessConfig.getIndexDocumentUpdateIndex());
                        if (!exists) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Collections2.java

        public boolean removeAll(final Collection<?> collection) {
          boolean changed = false;
          Iterator<E> itr = unfiltered.iterator();
          while (itr.hasNext()) {
            E e = itr.next();
            if (predicate.apply(e) && collection.contains(e)) {
              itr.remove();
              changed = true;
            }
          }
          return changed;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SynchronizedTableTest.java

        public int size() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.size();
        }
    
        @Override
        public boolean isEmpty() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.isEmpty();
        }
    
        @Override
        public boolean containsValue(@Nullable Object value) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.containsValue(value);
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 06 17:23:04 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        }
    
        public boolean hasBuildFailures() {
            return !buildFailuresByProject.isEmpty();
        }
    
        public boolean hasBuildFailure(MavenProject project) {
            return buildFailuresByProject.containsKey(getProjectKey(project));
        }
    
        public boolean hasMultipleProjects() {
            return sorter.hasMultipleProjects();
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top