- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,725 for setC (0.03 sec)
-
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
return (Class<T>) propertyType; } @Override public final Method getReadMethod() { return readMethod; } /** * Sets the getter method. * * @param readMethod * The getter method. */ protected final void setReadMethod(final Method readMethod) { this.readMethod = readMethod;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
protected boolean favoriteSupport; /** Flag indicating whether thumbnail generation is enabled. */ protected boolean thumbnailSupport; /** * Hook method called before action execution. Sets up search-related flags and * registers popular words if enabled. * * @param runtime the action runtime context * @return the action response, or null to continue with normal processing */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
return generateTreeSet(freshElement); } @Generates static <E extends Comparable<? super E>> TreeSet<E> generateTreeSet(E freshElement) { TreeSet<E> set = Sets.newTreeSet(); set.add(freshElement); return set; } @Generates static <E extends Comparable<? super E>> ImmutableSortedSet<E> generateImmutableSortedSet( E freshElement) { return ImmutableSortedSet.of(freshElement); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 28.1K bytes - Viewed (0) -
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) -
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) -
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) -
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)