Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 1,924 for booleans (0.11 sec)

  1. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

        private String filename;
        private final Configuration config;
        private final boolean unicode;
    
        /**
         * Constructs a file both directory info.
         *
         * @param config the configuration
         * @param unicode whether to use unicode encoding
         */
        public FileBothDirectoryInfo(final Configuration config, final boolean unicode) {
            this.config = config;
            this.unicode = unicode;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/context/BaseContext.java

            return this.defaultCredentials;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#close()
         */
        @Override
        public boolean close() throws CIFSException {
            boolean inUse = super.close();
            inUse |= this.transportPool.close();
            return inUse;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         * @param isProjectSettings Boolean indicating if the validation is for project settings or user / installation settings.
         * @return The list of problems that were encountered, must not be {@code null}.
         */
        @Nonnull
        ProblemCollector<BuilderProblem> validate(@Nonnull Settings settings, boolean isProjectSettings);
    
        /**
         * Convert a model profile to a settings profile.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/ParamMap.java

            return parent.size();
        }
    
        @Override
        public boolean isEmpty() {
            return parent.isEmpty();
        }
    
        @Override
        public boolean containsKey(final Object key) {
            if (parent.containsKey(key)) {
                return true;
            }
            return parent.containsKey(toCamelCase(key));
        }
    
        @Override
        public boolean containsValue(final Object value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        private int allRecordCount;
    
        /** Total number of pages */
        private int allPageCount;
    
        /** Whether a previous page exists */
        private boolean existPrePage;
    
        /** Whether a next page exists */
        private boolean existNextPage;
    
        /** List of page numbers for pagination display */
        private List<Integer> pageNumberList;
    
        /** Number of items per page */
        private int pageSize;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          Iterator<V> getDelegateIterator() {
            validateIterator();
            return delegateIterator;
          }
        }
    
        @Override
        public boolean add(@ParametricNullness V value) {
          refreshIfEmpty();
          boolean wasEmpty = delegate.isEmpty();
          boolean changed = delegate.add(value);
          if (changed) {
            totalSize++;
            if (wasEmpty) {
              addToMap();
            }
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

                boolean done = false;
                for (int i = 0; i < 60; i++) {
                    final List<Map<String, Object>> installed =
                            checkGetMethod(Collections.emptyMap(), getInstalledEndpointSuffix() + "/").body()
                                    .jsonPath()
                                    .get("response.plugins");
                    boolean exists = installed.stream()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SynchronizedMapTest.java

      }
    
      public void testIsEmpty() {
        boolean unused = create().isEmpty();
      }
    
      public void testRemove() {
        create().remove(null);
      }
    
      public void testClear() {
        create().clear();
      }
    
      public void testContainsKey() {
        boolean unused = create().containsKey(null);
      }
    
      public void testContainsValue() {
        boolean unused = create().containsValue(null);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 28 19:11:14 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

        void setArtifactId(String artifactId);
    
        boolean isSnapshot();
    
        void setResolved(boolean resolved);
    
        boolean isResolved();
    
        void setResolvedVersion(String version);
    
        void setArtifactHandler(ArtifactHandler handler);
    
        boolean isRelease();
    
        void setRelease(boolean release);
    
        List<ArtifactVersion> getAvailableVersions();
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

        }
      }
    
      private abstract static class MapTests extends MapInterfaceTest<String, Integer> {
    
        MapTests(
            boolean allowsNullValues,
            boolean supportsPut,
            boolean supportsRemove,
            boolean supportsClear,
            boolean supportsIteratorRemove) {
          super(
              false,
              allowsNullValues,
              supportsPut,
              supportsRemove,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top