Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,508 for setB (0.03 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         *
         * @return the isExtended
         */
        public final boolean isExtended() {
            return this.isExtended;
        }
    
        /**
         * Sets whether the response is extended.
         *
         * @param isExtended
         *            the isExtended to set
         */
        public final void setExtended(final boolean isExtended) {
            this.isExtended = isExtended;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ingest/Ingester.java

         *
         * @return the priority value
         */
        public int getPriority() {
            return priority;
        }
    
        /**
         * Sets the priority of this ingester.
         * Lower numbers indicate higher priority.
         *
         * @param priority the priority value to set
         */
        public void setPriority(final int priority) {
            this.priority = priority;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

       */
      @CanIgnoreReturnValue
      @Override
      public Set<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
        return super.replaceValues(key, values);
      }
    
      /**
       * Returns a set of all key-value pairs. Changes to the returned set will update the underlying
       * multimap, and vice versa. The entries set does not support the {@code add} or {@code addAll}
       * operations.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/preinst

    #       $1=install : indicates an new install
    #       $1=upgrade : indicates an upgrade
    #
    #   On RedHat,
    #       $1=1       : indicates an new install
    #       $1=2       : indicates an upgrade
    
    
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_USER_HOME="${packaging.fess.var.dir}"
    
    # Source the default env file
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedListMultimap.java

          current.setValue(value);
        }
      }
    
      /** An {@code Iterator} over distinct keys in key head order. */
      private final class DistinctKeyIterator implements Iterator<K> {
        final Set<K> seenKeys = Sets.<K>newHashSetWithExpectedSize(keySet().size());
        @Nullable Node<K, V> next = head;
        @Nullable Node<K, V> current;
        int expectedModCount = modCount;
    
        private void checkForConcurrentModification() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        protected Map<String, Supplier<String>> updateConfigListenerMap = new HashMap<>();
    
        /** A set of names of threads that are currently waiting. */
        protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>());
    
        /**
         * Initializes the SystemHelper.
         * This method sets up system properties, caches, and other initial configurations.
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                    resource -> accessContextLogic.create(resource, OptionalThing::empty, OptionalThing::empty, () -> APP_TYPE));
        }
    
        /**
         * Sets the job class to be executed by this scheduler.
         *
         * @param jobClass the job class to set
         */
        public void setJobClass(final Class<? extends LaJob> jobClass) {
            this.jobClass = jobClass;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/Escapers.java

        private char safeMax = Character.MAX_VALUE;
        private @Nullable String unsafeReplacement = null;
    
        // The constructor is exposed via the builder() method above.
        private Builder() {}
    
        /**
         * Sets the safe range of characters for the escaper. Characters in this range that have no
         * explicit replacement are considered 'safe' and remain unescaped in the output. If {@code
         * safeMax < safeMin} then the safe range is empty.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/SmbRandomAccessFileTest.java

            assertEquals(newPosition, smbRandomAccessFile.getFilePointer());
        }
    
        @Test
        void testSeekNegativePosition() throws SmbException {
            // seek doesn't throw exception for negative position, it just sets it
            smbRandomAccessFile.seek(-1);
            assertEquals(-1, smbRandomAccessFile.getFilePointer());
        }
    
        @Test
        void testReadByte() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/LocaleUtil.java

         */
        public static Locale getDefault() {
            if (defaultLocaleSupplier != null) {
                return defaultLocaleSupplier.get();
            }
            return Locale.ENGLISH;
        }
    
        /**
         * Sets the default locale supplier.
         *
         * @param localeSupplier
         *            the supplier for the default locale
         */
        public static void setDefault(final Supplier<Locale> localeSupplier) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top