- Sort Score
- Result 10 results
- Languages All
Results 1441 - 1450 of 3,588 for finally (0.04 sec)
-
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
public static final String CHILDREN_COMBINATION_MODE_ATTRIBUTE = "combine.children"; /** Value indicating children should be merged based on element names */ public static final String CHILDREN_COMBINATION_MERGE = "merge"; /** Value indicating children should be appended as siblings */ public static final String CHILDREN_COMBINATION_APPEND = "append"; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java
private static final long serialVersionUID = 1L; /** * Default constructor for file authentication pager. * Creates a new instance with default values. */ public FileAuthPager() { // Default constructor } /** The default number of records to display per page. */ public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
} // Instance fields private final ErrorCode errorCode; private final RetryPolicy retryPolicy; private final Map<String, Object> context; private final long operationStartTime; private final String operationName; private final int attemptNumber; private final long ntStatus; private final String serverMessage; private final String originalMessage; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
public Crawler() { crawlerContext = new CrawlerContext(); final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS", Locale.ENGLISH); crawlerContext.sessionId = sdf.format(new Date()); } /** * Adds a URL to the crawling queue. * @param url The URL to add. */ public void addUrl(final String url) { try {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoResponse.java
*/ public Smb2SetInfoResponse(final Configuration config) { super(config); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */ @Override protected int writeBytesWireFormat(final byte[] dst, final int dstIndex) { return 0; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/LabelTypeDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // ========= private static final LabelTypeDbm _instance = new LabelTypeDbm();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
return new EntrySet<>(this, alternatingKeysAndValues, 0, size); } static final class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> { private final transient ImmutableMap<K, V> map; private final transient @Nullable Object[] alternatingKeysAndValues; private final transient int keyOffset; private final transient int size; EntrySet( ImmutableMap<K, V> map,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
* * @author Doug Lea * @author Martin Buchholz * @since 11.0 */ @GwtIncompatible @J2ktIncompatible public class AtomicDoubleArray implements Serializable { private static final long serialVersionUID = 0L; // Making this non-final is the lesser evil according to Effective // Java 2nd Edition Item 76: Write readObject methods defensively. private transient AtomicLongArray longs; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
*/ public class WitnessRegistration { private final String registrationId; private final String shareName; private final InetAddress serverAddress; private final WitnessServiceType serviceType; private final WitnessVersion version; private final long registrationTime; private final AtomicLong sequenceNumber; private byte[] contextHandle; // Registration flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/DriverManagerUtil.java
* The class name of the JDBC driver to register. Must not be {@literal null} or an empty string. */ public static void registerDriver(final String driverClassName) { assertArgumentNotEmpty("driverClassName", driverClassName); final Class<Driver> clazz = ClassUtil.forName(driverClassName); registerDriver(clazz); } /** * Registers a JDBC driver. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0)