- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 658 for keyname (0.49 sec)
-
src/test/java/jcifs/util/ResourceManagerTest.java
} @Override public void close() { closed.set(true); } boolean isClosed() { return closed.get(); } String getName() { return name; } } @Test @DisplayName("Test resource registration and tracking") void testResourceRegistration() { TestResource resource = new TestResource("test1");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
return queryBuilder.filter(filter); } /** * Returns the name of the query. * * @return the query name */ @Override public String getName() { return queryBuilder.getName(); } /** * Rewrites the query using the provided rewrite context. * * @param queryShardContext the query rewrite context * @return the rewritten query builder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K 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 Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
* @param fieldName * Field name */ public FieldNotStaticRuntimeException(final Class<?> targetClass, final String fieldName) { super("ECL0099", asArray(targetClass.getName(), fieldName)); this.targetClass = targetClass; this.fieldName = fieldName; } /** * Returns the target class. * * @return Target class */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java
* @param methodName * Method name */ public MethodNotStaticRuntimeException(final Class<?> targetClass, final String methodName) { super("ECL0100", asArray(targetClass.getName(), methodName)); this.targetClass = targetClass; this.methodName = methodName; } /** * Returns the target class. * * @return Target class */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java
* The cause of the exception */ public NoSuchFieldRuntimeException(final Class<?> targetClass, final String fieldName, final Throwable cause) { super("ECL0070", asArray(targetClass.getName(), fieldName), cause); this.targetClass = targetClass; this.fieldName = fieldName; } /** * Returns the target class. * * @return Target class */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
* @param fe * @return * @throws MalformedURLException */ @Override protected SmbResource adapt(final FileEntry e) throws MalformedURLException { return new SmbFile(getParent(), e.getName(), true, SmbConstants.TYPE_FILESYSTEM, e.getAttributes(), e.createTime(), e.lastModified(), e.lastAccess(), e.length()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java
derivedSuites.add( CollectionTestSuiteBuilder.using( new ReserializedCollectionGenerator<E>(parentBuilder.getSubjectGenerator())) .named(getName() + " reserialized") .withFeatures(computeReserializedCollectionFeatures(parentBuilder.getFeatures())) .suppressing(parentBuilder.getSuppressedTests()) .withSetUp(parentBuilder.getSetUp())
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 3.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivator.java
package org.apache.maven.profiles.activation; import org.apache.maven.model.Profile; /** * ProfileActivator */ @Deprecated public interface ProfileActivator { String ROLE = ProfileActivator.class.getName(); boolean canDetermineActivation(Profile profile); boolean isActive(Profile profile) throws ProfileActivationException;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0)