- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 510 for getNamer (0.14 sec)
-
src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java
return gidNumber; } public void setGidNumber(Long value) { registerModifiedProperty("gidNumber"); this.gidNumber = value; } public String getName() { checkSpecifiedProperty("name"); return convertEmptyToNull(name); } public void setName(String value) { registerModifiedProperty("name"); this.name = value;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/TearDownStack.java
* @since 10.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public class TearDownStack implements TearDownAccepter { private static final Logger logger = Logger.getLogger(TearDownStack.class.getName()); @VisibleForTesting final Object lock = new Object(); @GuardedBy("lock") final LinkedList<TearDown> stack = new LinkedList<>(); private final boolean suppressThrows; public TearDownStack() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 21 10:19:29 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
* dependencies transitively</li> * </ul> * */ public interface ArtifactHandler { @Deprecated String ROLE = ArtifactHandler.class.getName(); /** * Returns the file name extension of the artifact; * e.g. "jar", "pom", "xml", etc. * * @return the file extension */ String getExtension();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java
import org.apache.maven.artifact.repository.ArtifactRepository; /** * ArtifactDeployer */ @Deprecated public interface ArtifactDeployer { String ROLE = ArtifactDeployer.class.getName(); /** * Deploy an artifact from a particular directory. The artifact handler is used to determine the * filename of the source file. * * @param basedir the directory where the artifact is stored
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
final String thumbnailId = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldId(), String.class); final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path); if (logger.isDebugEnabled()) { logger.debug("Create thumbnail task: {}", task); } return task; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassLoaderUtilTest.java
} } /** * @throws Exception */ @Test public void testGetResources() throws Exception { final String name = TestCase.class.getName().replace('.', '/') + ".class"; final Iterator<URL> itr = ClassLoaderUtil.getResources(this.getClass(), name); assertThat(itr, is(notNullValue())); final URL url = itr.next();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/SubtypeTester.java
Arrays.sort( methods, new Comparator<Method>() { @Override public int compare(Method a, Method b) { return a.getName().compareTo(b.getName()); } }); for (Method method : methods) { if (method.isAnnotationPresent(TestSubtype.class)) { method.setAccessible(true);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerFileEntryAdapterIterator.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TestThread.java
@SuppressWarnings("deprecation") @Override public void tearDown() throws Exception { stop(); join(); if (uncaughtThrowable != null) { throw new AssertionError("Uncaught throwable in " + getName(), uncaughtThrowable); } } /** * Causes this thread to call the named void method, and asserts that the call returns normally. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
*/ package org.codelibs.fess.thumbnail; import java.io.File; import java.util.Map; import org.codelibs.core.misc.Tuple3; public interface ThumbnailGenerator { String getName(); boolean generate(String thumbnailId, File outputFile); boolean isTarget(Map<String, Object> docMap); boolean isAvailable(); void destroy();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0)