- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 2,630 for Gist (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
/** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets a list of role types based on the pager. * @param roleTypePager The pager for role types. * @return A list of role types. */ public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) { final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.1K bytes - Click Count (0) -
tests/test_response_by_alias.py
def read_dict(): return {"alias": "Foo"} @app.get("/model", response_model=Model, response_model_by_alias=False) def read_model(): return Model(alias="Foo") @app.get("/list", response_model=list[Model], response_model_by_alias=False) def read_list(): return [{"alias": "Foo"}, {"alias": "Bar"}] @app.get("/by-alias/dict", response_model=Model) def by_alias_dict(): return {"alias": "Foo"}
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 20 15:55:38 GMT 2025 - 10.7K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/Helpers.java
} }; } static <E extends @Nullable Object> List<E> castOrCopyToList(Iterable<E> iterable) { if (iterable instanceof List) { return (List<E>) iterable; } List<E> list = new ArrayList<>(); for (E e : iterable) { list.add(e); } return list; } @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Oct 10 23:13:45 GMT 2025 - 17.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java
*/ package org.apache.maven.execution; import java.util.List; /** * This class holds the information required to enable resuming a Maven build with {@code --resume}. */ public class BuildResumptionData { /** * The list of projects that remain to be built. */ private final List<String> remainingProjects; public BuildResumptionData(final List<String> remainingProjects) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/ssllabs/UserAgentCapabilities.kt
val minDhBits: Int, val minEcdsaBits: Int, val minRsaBits: Int, val name: String, val npnProtocols: List<String>, val platform: String?, val requiresSha2: Boolean, val signatureAlgorithms: List<Int>, val suiteIds: List<Int>, val suiteNames: List<String>, val supportsCompression: Boolean, val supportsNpn: Boolean, val supportsRi: Boolean, val supportsSni: Boolean,
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Apr 02 01:44:15 GMT 2024 - 1.5K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtensions.java
/** * Method getExtensions. * * @return List */ public List<CoreExtension> getExtensions() { if (this.extensions == null) { this.extensions = new ArrayList<CoreExtension>(); } return this.extensions; } // -- List<CoreExtension> getExtensions() /** * Get the modelEncoding field. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
*/ private ClassRealm createRealm( String baseRealmId, RealmType type, ClassLoader parent, List<String> parentImports, Map<String, ClassLoader> foreignImports, List<Artifact> artifacts) { List<ClassRealmConstituent> constituents = new ArrayList<>(artifacts == null ? 0 : artifacts.size()); if (artifacts != null && !artifacts.isEmpty()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
final List<JobLog> list = jobLogBhv.selectList(cb -> { cb.query().bool((must, should, mustNot, filter) -> { must.setLastUpdated_LessEqual(expiry); mustNot.setEndTime_Exists(); }); }); if (!list.isEmpty()) { list.forEach(jobLog -> { jobLog.setJobStatus(Constants.FAIL);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/jcifs/pac/kerberos/KerberosAuthData.java
* @param keys the Kerberos keys for decryption * @return a list of parsed authorization data * @throws PACDecodingException if the data cannot be decoded */ public static List<KerberosAuthData> parse(int authType, byte[] token, Map<Integer, KerberosKey> keys) throws PACDecodingException { List<KerberosAuthData> authorizations = new ArrayList<>(); switch (authType) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
if (params != null && url != null) { final String value = params.get(ExtractData.FILE_PASSWORDS); if (StringUtil.isNotBlank(value)) { List<Pair<Pattern, String>> list = configPasswordMap.get(value); if (list == null) { try { final ObjectMapper mapper = new ObjectMapper();Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Aug 07 02:55:08 GMT 2025 - 5.1K bytes - Click Count (0)