- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 94 for keypath (0.06 sec)
-
pom.xml
<defaultUsername>${packaging.fess.user}</defaultUsername> <defaultGroupname>${packaging.fess.group}</defaultGroupname> <!-- <keyname>${gpg.key}</keyname> <keypath>${gpg.keyring}</keypath> <keyPassphrase> <passphrase>${gpg.passphrase}</passphrase> </keyPassphrase> --> <mappings> <!-- app --> <mapping>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/KeyMatch.java
*/ package org.codelibs.fess.opensearch.config.exentity; import org.codelibs.fess.opensearch.config.bsentity.BsKeyMatch; /** * @author FreeGen */ public class KeyMatch extends BsKeyMatch { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); } public void setId(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsThumbnailQueue.java
public void setGenerator(String value) { registerModifiedProperty("generator"); this.generator = value; } public String getPath() { checkSpecifiedProperty("path"); return convertEmptyToNull(path); } public void setPath(String value) { registerModifiedProperty("path"); this.path = value; } public String getTarget() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final String filename = getImageFilename(docId); final Path newPath = basePath.resolve(filename); if (!path.equals(newPath)) { try { try { Files.createDirectories(newPath.getParent()); } catch (final FileAlreadyExistsException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsKeyMatchBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends KeyMatch> typeOfSelectedEntity() { return KeyMatch.class; } @Override protected Class<KeyMatch> typeOfHandlingEntity() { return KeyMatch.class; } @Override protected Class<KeyMatchCB> typeOfHandlingConditionBean() { return KeyMatchCB.class;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
* generated. */ fun keyPair(keyPair: KeyPair) = apply { this.keyPair = keyPair } /** * Sets the public/private key pair used for this certificate. If unset a key pair will be * generated. */ fun keyPair( publicKey: PublicKey, privateKey: PrivateKey, ) = apply { keyPair(KeyPair(publicKey, privateKey)) } /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
return getPath("WEB-INF/", "classes", names); } /** * Gets the path to original files directory. * * @param names the path components to append to the orig directory * @return the Path object pointing to the original files directory */ public static Path getOrigPath(final String... names) { return getPath("WEB-INF/", "orig", names); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java
(et, vl) -> ((ThumbnailQueue) et).setGenerator(DfTypeUtil.toString(vl)), "generator"); setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getPath(), (et, vl) -> ((ThumbnailQueue) et).setPath(DfTypeUtil.toString(vl)), "path"); setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getTarget(), (et, vl) -> ((ThumbnailQueue) et).setTarget(DfTypeUtil.toString(vl)),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp-tls/api/okhttp-tls.api
public final fun -deprecated_keyPair ()Ljava/security/KeyPair; public fun <init> (Ljava/security/KeyPair;Ljava/security/cert/X509Certificate;)V public final fun certificate ()Ljava/security/cert/X509Certificate; public final fun certificatePem ()Ljava/lang/String; public static final fun decode (Ljava/lang/String;)Lokhttp3/tls/HeldCertificate; public final fun keyPair ()Ljava/security/KeyPair; public final fun privateKeyPkcs1Pem ()Ljava/lang/String;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Feb 26 19:17:33 UTC 2022 - 3.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBiMap.java
return oldKey; } } int predecessor = lastInInsertionOrder; int keyHash = Hashing.smearedHash(key); int keyEntry = findEntryByKey(key, keyHash); if (force) { if (keyEntry != ABSENT) { predecessor = prevInInsertionOrder[keyEntry]; removeEntryKeyHashKnown(keyEntry, keyHash); } } else { checkArgument(keyEntry == ABSENT, "Key already present: %s", key);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 36.2K bytes - Viewed (0)