- Sort Score
 - Result 10 results
 - Languages All
 
Results 1551 - 1560 of 3,475 for 1final (0.03 sec)
- 
				
				
src/test/java/jcifs/smb/FileEntryTest.java
private static final class TestFileEntry implements FileEntry { private final String name; private final int type; private final int attributes; private final long createTime; private final long lastModified; private final long lastAccess; private final long length; private final int fileIndex;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
*/ private ResultData ingest(final ResponseData responseData, final ResultData resultData) { if (ingestFactory == null) { return resultData; } ResultData target = resultData; for (final Ingester ingester : ingestFactory.getIngesters()) { try { target = ingester.process(target, responseData); } catch (final Exception e) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) - 
				
				
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
// temporary-use one. Therefore it shouldn't be persisted. static final HashFunction GOOD_FAST_HASH_32 = new Murmur3_32HashFunction(Hashing.GOOD_FAST_HASH_SEED, /* supplementaryPlaneFix= */ true); private static final int CHUNK_SIZE = 4; private static final int C1 = 0xcc9e2d51; private static final int C2 = 0x1b873593; private final int seed; private final boolean supplementaryPlaneFix;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
* * @param netName the network name of the share * @param type the type of the share * @param remark the optional comment or description for the share */ public SmbShareInfo(final String netName, final int type, final String remark) { this.netName = netName; this.type = type; this.remark = remark; } @Override public String getName() { return this.netName; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/cors/CorsHandler.java
*/ protected static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin"; /** * CORS header for specifying allowed headers. */ protected static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers"; /** * CORS header for specifying allowed HTTP methods. */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
*/ public static DocumentBuilderFactory newInstance(final boolean external) { final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); if (!external) { try { factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_DTD, ""); factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_SCHEMA, ""); } catch (final Exception e) { if (logger.isDebugEnabled()) {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/CIFSUnsupportedCryptoException.java
*/ public CIFSUnsupportedCryptoException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a CIFS unsupported crypto exception with the specified detail message. * * @param message the detail message */ public CIFSUnsupportedCryptoException(final String message) { super(message); } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
*/ public SMBProtocolDowngradeException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new SMBProtocolDowngradeException with the specified detail message. * * @param message the detail message */ public SMBProtocolDowngradeException(final String message) { super(message); } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/util/transport/TransportException.java
*/ public TransportException(final Throwable rootCause) { super(rootCause); } /** * Constructs a new TransportException with the specified detail message and cause. * @param msg the detail message * @param rootCause the cause of this exception */ public TransportException(final String msg, final Throwable rootCause) { super(msg, rootCause); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/entity/FacetInfo.java
* * @return the BucketOrder instance representing the sort configuration */ public BucketOrder getBucketOrder() { if (StringUtil.isNotBlank(sort)) { final String[] values = sort.split("\\."); final boolean asc; if (values.length > 1) { asc = !"desc".equalsIgnoreCase(values[1]); } else { asc = true; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0)