- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 372 for HashMap (0.09 sec)
-
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.go; import java.util.HashMap; import java.util.Map; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; public class GoForm { @Required @Size(max = 100) public String docId;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/CreateForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.group; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.app.web.CrudMode; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.client.smb1; import java.util.HashMap; import java.util.Map; /** * @author shinsuke * */ public class SmbAuthenticationHolder { private final Map<String, SmbAuthentication> authMap = new HashMap<>(); public void add(final SmbAuthentication auth) { authMap.put(auth.getPathPrefix(), auth); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
import jakarta.validation.constraints.Size; public class SearchForm extends SearchRequestParams { public Map<String, String[]> fields = new HashMap<>(); public Map<String, String[]> as = new HashMap<>(); @Size(max = 1000) public String q; @Size(max = 1000) public String sort; @ValidateTypeFailure public Integer num;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
@ValidateTypeFailure public Integer pn; @ValidateTypeFailure public Integer num; public String[] lang; public Map<String, String[]> fields = new HashMap<>(); public Map<String, String[]> as = new HashMap<>(); public String[] ex_q; public String sdh; @Override public String getQuery() { return q; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
protected File tempDir = null; protected String outputEncoding = Constants.UTF_8; private final Map<String, String> extensionMap = new HashMap<>(); private final Map<String, Extractor> extractorMap = new HashMap<>(); public JodExtractor() { extensionMap.put("", "txt"); // Text Formats extensionMap.put("odt", "txt"); extensionMap.put("ott", "txt");
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 8.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
Map<String, String> mergedProps = new HashMap<>(); mergedProps.putAll(getPropertiesFromRequestedProfiles(request)); mergedProps.putAll(new HashMap<String, String>((Map) request.getSystemProperties())); mergedProps.putAll(new HashMap<String, String>((Map) request.getUserProperties())); return mergedProps; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/CreateForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.role; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.app.web.CrudMode; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.thumbnail; import java.util.HashMap; import java.util.Map; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; public class ThumbnailForm { @Required @Size(max = 100)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/Role.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.es.user.exentity; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.es.user.bsentity.BsRole; /** * @author FreeGen */ public class Role extends BsRole { private static final long serialVersionUID = 1L;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0)