- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for tagSet (0.07 sec)
-
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
final GetObjectTaggingResponse response = s3Client.getObjectTagging(request); return response.tagSet().stream().collect(Collectors.toMap(Tag::key, Tag::value)); } catch (final Exception e) { throw new StorageException("Failed to get tags from " + objectName, e); } } @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
final GetObjectTaggingResponse response = awsS3Client.getObjectTagging(request); if (response.tagSet() == null || response.tagSet().isEmpty()) { return null; } final Map<String, String> tags = new HashMap<>(); for (final Tag tag : response.tagSet()) { tags.put(tag.key(), tag.value()); } return tags;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
module.xml
</target> <target name="install.module"> <get dest="${target.dir}"> <url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" /> </get> <unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip"> <patternset> <include name="**" /> </patternset>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 18 09:50:31 UTC 2025 - 4K bytes - Viewed (0) -
deps.xml
<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip"> <patternset> <include name="fess-kopf-${kopf.branch}/_site/**" /> </patternset> <cutdirsmapper dirs="2" /> </unzip> <delete> <fileset dir="${webinf.dir}/plugin"> <include name="**/*.jar" /> </fileset> </delete> </target> <target name="install.env.jar"> <get dest="${target.dir}">Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 08:57:53 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
target.setUrl(getFieldValue(fields.get("url"), String.class)); target.setExecutionTime(getFieldValue(fields.get("executionTime"), Integer.class)); target.setContentLength(getFieldValue(fields.get("contentLength"), Long.class)); target.setRuleId(getFieldValue(fields.get("ruleId"), String.class));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.1K bytes - Viewed (0) -
plugin.xml
</antcall> <antcall target="remove.jars" /> </target> <target name="install.plugin"> <get dest="${target.dir}"> <url url="${repo.url}/${plugin.groupId}/${plugin.name.prefix}${plugin.name}/${plugin.version}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip" /> </get> <unzip dest="${plugins.dir}/${plugin.name}" src="${target.dir}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 18 09:50:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
public static class TextFragment { /** Optional prefix text before the target */ private final String prefix; /** Start of the target text */ private final String textStart; /** Optional end of the target text */ private final String textEnd; /** Optional suffix text after the target */ private final String suffix; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
dbflute.xml
</condition> </target> <target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists"> <mkdir dir="${mydbflute.dir}" /> <get dest="${target.dir}/mydbflute.zip"> <url url="${mydbflute.url}" /> </get> <unzip dest="${mydbflute.dir}" src="${target.dir}/mydbflute.zip"> <patternset> <include name="lastaflute-example-waterfront-${branch.name}/mydbflute/dbflute-1.x/**" /> </patternset>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 999 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
target /= 1024; target /= 1024; target /= 1024; unit = "G"; } else { target /= 1024; target /= 1024; target /= 1024; target /= 1024; unit = "T"; } final DecimalFormat df = (DecimalFormat) NumberFormat.getNumberInstance(getUserLocale());Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/JobLogDbm.java
false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnTarget = cci("target", "target", null, null, String.class, "target", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); public ColumnInfo columnEndTime() { return _columnEndTime; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 11.1K bytes - Viewed (0)