- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 2,158 for Booleans (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
protected String roleSeparator = ","; protected String parameterKey; protected boolean encryptedParameterValue = true; protected String headerKey; protected boolean encryptedHeaderValue = true; protected String cookieKey; protected boolean encryptedCookieValue = true; protected long maxAge = 30 * 60; // sec protected Map<String, String> cookieNameMap;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 25 01:48:41 UTC 2024 - 11.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java
} private boolean shouldSkipViolationCheckFor(JApiCompatibility member) { return !isClassFieldConstructorOrMethod(member) || isInject(member) || isOverrideMethod(member) || isKotlinFileFacadeClass(member); } private boolean isClassFieldConstructorOrMethod(JApiCompatibility member) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 21 16:02:23 UTC 2023 - 2.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
} return mojos; } private boolean extractInheritedByDefault(PlexusConfiguration c) { String inheritedByDefault = c.getChild("inheritedByDefault").getValue(); if (inheritedByDefault != null) { return Boolean.parseBoolean(inheritedByDefault); } return false; } private boolean extractIsolatedRealm(PlexusConfiguration c) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt
private typealias PredicateVisitor = GenericVisitorAdapter<Boolean, Unit?> internal object JavaSourceQueries { fun isOverrideMethod(method: JApiMethod): JavaSourceQuery<Boolean> = JavaSourceQuery( false, object : PredicateVisitor() { override fun visit(declaration: MethodDeclaration, arg: Unit?): Boolean? {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 6.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Verify.java
*/ public static void verify(boolean expression) { if (!expression) { throw new VerifyException(); } } /** * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a * custom message otherwise. * * @param expression a boolean expression
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 17 14:07:47 UTC 2021 - 18.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java
boolean optional = false; String retVal = null; if (st.countTokens() > 0) { String tokenList = "?\","; StringBuilder tokBuf = new StringBuilder(10); String tok; boolean inQuote = false; boolean tokStarted = false; boolean exit = false;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
private Boolean explain; private Float minScore; private String preference; private String routing; private String searchType; private long timeoutInMillis = -1; private Boolean version; private Boolean seqNoAndPrimaryTerm = Boolean.TRUE; private int terminateAfter = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
private File localRepositoryPath; private boolean offline = false; private boolean interactiveMode = true; private boolean cacheTransferError = false; private boolean cacheNotFound = false; private boolean ignoreMissingArtifactDescriptor = true; private boolean ignoreInvalidArtifactDescriptor = true; private boolean ignoreTransitiveRepositories; private List<Proxy> proxies;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
@Nonnull Session getSession(); @Nonnull Optional<Path> getPath(); @Nonnull Optional<Source> getSource(); boolean isAllowStubModel(); boolean isRecursive(); boolean isProcessPlugins(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 5.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
} @Override public Optional<Boolean> offline() { if (commandLine.hasOption(CLIManager.OFFLINE)) { return Optional.of(Boolean.TRUE); } return Optional.empty(); } @Override public Optional<Boolean> nonRecursive() { if (commandLine.hasOption(CLIManager.NON_RECURSIVE)) { return Optional.of(Boolean.TRUE); } return Optional.empty();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0)