- Sort Score
- Result 10 results
- Languages All
Results 941 - 950 of 3,503 for 1final (0.05 sec)
-
guava/src/com/google/common/reflect/Types.java
} return false; } private static final long serialVersionUID = 0; } private static final class ParameterizedTypeImpl implements ParameterizedType, Serializable { @CheckForNull private final Type ownerType; private final ImmutableList<Type> argumentsList; private final Class<?> rawType;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
import org.codelibs.fess.dict.DictionaryItem; public class CharMappingItem extends DictionaryItem { private final String[] inputs; private final String output; private String[] newInputs; private String newOutput; public CharMappingItem(final long id, final String[] inputs, final String output) { this.id = id; this.inputs = inputs;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 3.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
} } public void addExtractor(final List<String> keyList, final Extractor extractor) { if (keyList == null || keyList.isEmpty()) { throw new CrawlerSystemException("The key list is empty."); } for (final String key : keyList) { addExtractor(key, extractor); } } public Extractor getExtractor(final String key) { return extractorMap.get(key);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Tue Jun 18 05:49:57 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
private static final Logger logger = LogManager.getLogger(ApiAdminGroupAction.class); @Resource private GroupService groupService; // GET /api/admin/group // POST /api/admin/group @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final GroupPager pager = copyBeanToNewBean(body, GroupPager.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8 public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 public static final int DELETE = 0x00010000; // 16 public static final int READ_CONTROL = 0x00020000; // 17 public static final int WRITE_DAC = 0x00040000; // 18 public static final int WRITE_OWNER = 0x00080000; // 19
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
import jcifs.internal.smb1.trans2.Trans2FindNext2; class DirFileEntryEnumIterator1 extends DirFileEntryEnumIteratorBase { private static final Logger log = LoggerFactory.getLogger(DirFileEntryEnumIterator1.class); private static final int FIND_OVERHEAD = 100; // plenty enough private Trans2FindNext2 nextRequest; private Trans2FindFirst2Response response;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
write( buf, 4, len ). Calling write( buf, 0, len ) will generate an error. */ public class NbtSocket extends Socket { private static final int SSN_SRVC_PORT = 139; private static final int BUFFER_SIZE = 512; private static final int DEFAULT_SO_TIMEOUT = 5000; private static LogStream log = LogStream.getInstance(); private NbtAddress address; private Name calledName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
private static final Logger log = LoggerFactory.getLogger(SingletonContext.class); private static SingletonContext INSTANCE; /** * Initialize singleton context using custom properties * * This method can only be called once. * * @param props * @throws CIFSException */ public static synchronized final void init ( Properties props ) throws CIFSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 08:53:08 UTC 2019 - 4.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
/** * The group id of the unresolvable model. */ private final String groupId; /** * The artifact id of the unresolvable model. */ private final String artifactId; /** * The version of the unresolvable model. */ private final String version; /** * Creates a new exception with specified detail message and cause. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java
@Tag("it") public class SchedulerTests extends CrudTestBase { private static final String NAME_PREFIX = "schedulerTest_"; private static final String API_PATH = "/api/admin/scheduler"; private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String KEY_PROPERTY = "name"; @Override protected String getNamePrefix() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0)