- Sort Score
- Result 10 results
- Languages All
Results 1211 - 1220 of 2,158 for Boolean (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
protected String[] supportedFields; protected String[] tagFieldNames; protected String roleFieldName; protected String langFieldName; protected String[] badWords; protected boolean parallel; protected ReadingConverter readingConverter; protected ReadingConverter contentsReadingConverter; protected Normalizer normalizer; protected SuggestAnalyzer analyzer;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 26.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int FLAGS_INHERIT_ONLY = 0x08; public static final int FLAGS_INHERITED = 0x10; boolean allow; int flags; int access; SID sid; /** * Returns true if this ACE is an allow ACE and false if it is a deny ACE. */ public boolean isAllow() { return allow; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
* populate the builder configuration with model repositories instead of artifact repositories. */ if (repositories != null) { boolean normalized = false; List<ArtifactRepository> repos = new ArrayList<>(repositories.size()); for (Object repository : repositories) { if (repository instanceof Repository) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/GroupDbm.java
// =========== @Override public boolean hasPrimaryKey() { return false; } @Override public boolean hasCompoundPrimaryKey() { return false; } @Override protected UniqueInfo cpui() { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.6K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt
/** * Encode and decode a model object like a [Long] or [Certificate] as DER bytes. */ internal interface DerAdapter<T> { /** Returns true if this adapter can read [header] in a choice. */ fun matches(header: DerHeader): Boolean /** * Returns a value from this adapter. * * This must always return a value, though it doesn't necessarily need to consume data from
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/PrimitiveSink.java
@CanIgnoreReturnValue PrimitiveSink putFloat(float f); /** Puts a double into this sink. */ @CanIgnoreReturnValue PrimitiveSink putDouble(double d); /** Puts a boolean into this sink. */ @CanIgnoreReturnValue PrimitiveSink putBoolean(boolean b); /** Puts a character into this sink. */ @CanIgnoreReturnValue PrimitiveSink putChar(char c); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 15 20:59:00 UTC 2022 - 3.9K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Parameter.java
return type; } /** Returns the {@link Invokable} that declares this parameter. */ public Invokable<?, ?> getDeclaringInvokable() { return declaration; } @Override public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { return getAnnotation(annotationType) != null; } @Override @CheckForNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 16 15:12:31 UTC 2023 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingQueue.java
protected ForwardingQueue() {} @Override protected abstract Queue<E> delegate(); @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override public boolean offer(@ParametricNullness E o) { return delegate().offer(o); } @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override @CheckForNull public E poll() { return delegate().poll();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 4.1K bytes - Viewed (0) -
src/main/config/es/fess_config_web_config.json
{ "fess_config.web_config" : { "aliases" : { }, "mappings" : { "web_config" : { "properties" : { "available" : { "type" : "boolean" }, "boost" : { "type" : "float" }, "configParameter" : { "type" : "keyword" }, "createdBy" : { "type" : "keyword" }, "createdTime" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 2.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
super(x, queue); } @Override public void finalizeReferent() {} } private static class PermissivePolicy extends Policy { @Override public boolean implies(ProtectionDomain pd, Permission perm) { return true; } } private WeakReference<ClassLoader> useFrqInSeparateLoader() throws Exception { final ClassLoader myLoader = getClass().getClassLoader();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 13.3K bytes - Viewed (0)