Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,558 for boolean (0.17 sec)

  1. guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java

        }
    
        @Override
        public boolean contains(Object object) {
          return standardContains(object);
        }
    
        @Override
        public boolean containsAll(Collection<?> collection) {
          return standardContainsAll(collection);
        }
    
        @Override
        public boolean remove(Object object) {
          return standardRemove(object);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java

        }
    
        @Override
        public boolean contains(Object object) {
          return standardContains(object);
        }
    
        @Override
        public boolean containsAll(Collection<?> collection) {
          return standardContainsAll(collection);
        }
    
        @Override
        public boolean remove(Object object) {
          return standardRemove(object);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 15:49:06 GMT 2023
    - 5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Float -> KtConstantValue.KtFloatConstantValue(value as Float, psi)
    
                ConstantValueKind.Boolean -> KtConstantValue.KtBooleanConstantValue(value as Boolean, psi)
                ConstantValueKind.Char -> KtConstantValue.KtCharConstantValue(value as Char, psi)
                ConstantValueKind.String -> KtConstantValue.KtStringConstantValue(value as String, psi)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Mar 20 14:53:27 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    filesDeselected; protected java.util.Vector dirsDeselected; protected boolean haveSlowResults; protected boolean isCaseSensitive; private boolean followSymlinks; protected boolean everythingIncluded; public void DirectoryScanner(); protected static boolean matchPatternStart(String, String); protected static boolean matchPatternStart(String, String, boolean); protected static boolean matchPath(String, String); protected static boolean matchPath(String, String, boolean); public static boolean match(String,...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 200.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/log/LoggerAdapter.java

     *
     * @author koichik
     */
    interface LoggerAdapter {
    
        boolean isFatalEnabled();
    
        void fatal(String message);
    
        void fatal(String message, Throwable t);
    
        boolean isErrorEnabled();
    
        void error(String message);
    
        void error(String message, Throwable t);
    
        boolean isWarnEnabled();
    
        void warn(String message);
    
        void warn(String message, Throwable t);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

        }
    
        /** {@inheritDoc} */
        public boolean isSnapshot() {
            return artifact.isSnapshot();
        }
    
        /** {@inheritDoc} */
        public int compareTo(Artifact a) {
            return artifact.compareTo(a);
        }
    
        /** {@inheritDoc} */
        public void setResolved(boolean resolved) {
            artifact.setResolved(resolved);
        }
    
        /** {@inheritDoc} */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public static SelectorUtils getInstance(); public static boolean matchPatternStart(String, String); public static boolean matchPatternStart(String, String, boolean); public static boolean matchPath(String, String); public static boolean matchPath(String, String, boolean); public static boolean match(String, String); public static boolean match(String, String, boolean); public static java.util.Vector tokenizePath(String); public static boolean isOutOfDate(java.io.File, java.io.File, int); public static...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    public static SelectorUtils getInstance(); public static boolean matchPatternStart(String, String); public static boolean matchPatternStart(String, String, boolean); public static boolean matchPath(String, String); public static boolean matchPath(String, String, boolean); public static boolean match(String, String); public static boolean match(String, String, boolean); public static java.util.Vector tokenizePath(String); public static boolean isOutOfDate(java.io.File, java.io.File, int); public static...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
Back to top