- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 3,501 for final (0.03 sec)
-
build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithConstants.groovy
package org.gradle.test class GroovyClassWithConstants { static final int INT_CONST = 9 public static final String STRING_CONST = 'some-string' static final Object OBJECT_CONST = new GroovyClassWithConstants() static final def BIG_DECIMAL_CONST = 1.02 String ignored = 'ignore' final int ignored2 = 1001 static def ignored3
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 356 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
public void insert(final User user) { chains().of(stream -> stream.forEach(c -> c.update(user))); } public boolean changePassword(final String username, final String password) { return chains().get(stream -> stream.allMatch(c -> c.changePassword(username, password))); } public void delete(final User user) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
private String encodeUrl(final String url) { try { return URLEncoder.encode(url, Constants.UTF_8); } catch (final UnsupportedEncodingException e) { throw new FessSystemException("Unsupported encoding.", e); } } public void test_decodeUrl_ok() throws Exception { String url, exp; final FessFileTransformer transformer = createInstance();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 9.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactDoesNotExistException.java
/** * ArtifactDoesNotExistException */ @Deprecated public class ArtifactDoesNotExistException extends Exception { public ArtifactDoesNotExistException(final String message) { super(message); } public ArtifactDoesNotExistException(final String message, final Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionMetaData.groovy
* limitations under the License. */ package gradlebuild.docs.dsl.docbook.model class ClassExtensionMetaData { final String targetClass final Set<MixinMetaData> mixinClasses = [] final Set<ExtensionMetaData> extensionClasses = [] ClassExtensionMetaData(String targetClass) { this.targetClass = targetClass }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
public class FtpAuthenticationHolder { List<FtpAuthentication> authList = new ArrayList<>(); public void add(final FtpAuthentication auth) { authList.add(auth); } public FtpAuthentication get(final String path) { if (path == null) { return null; } for (final FtpAuthentication auth : authList) { if (auth.matches(path)) { return auth; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // ========= private static final FavoriteLogDbm _instance = new FavoriteLogDbm();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
/** * The selector of a project. This can be the project directory, [groupId]:[artifactId] or :[artifactId]. */ final String selector; /** * This describes how/when to active or deactivate the project. */ final ActivationSettings activationSettings; ProjectActivationSettings(String selector, ActivationSettings activationSettings) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
return new DefaultAlias(v3Phase, v4Phase); } static class DefaultPhase implements Lifecycle.Phase { private final String name; private final List<Plugin> plugins; private final Collection<Lifecycle.Link> links; private final List<Lifecycle.Phase> phases; DefaultPhase(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserUtil.java
*/ public static void parse(final SAXParser parser, final InputSource inputSource, final DefaultHandler handler) { assertArgumentNotNull("parser", parser); assertArgumentNotNull("inputSource", inputSource); assertArgumentNotNull("handler", handler); try { parser.parse(inputSource, handler); } catch (final SAXException e) { throw new SAXRuntimeException(e);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.1K bytes - Viewed (0)