- Sort Score
- Result 10 results
- Languages All
Results 2621 - 2630 of 6,120 for stringy (0.05 sec)
-
src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java
public class ScheduledJobBhv extends BsScheduledJobBhv { private static final Logger logger = LogManager.getLogger(ScheduledJobBhv.class); private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
/** * * @return the resolved host name, or the host address if it could not be resolved */ String getHostName (); /** * Return the IP address as text such as "192.168.1.15". * * @return the ip address */ String getHostAddress (); /** * * @return this address as an InetAddress * @throws UnknownHostException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 03 13:22:30 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
jcifs.util.Encdec.enc_uint32le(sid.sub_authority[ ii ], dst, di); di += 4; } return dst; } int type; String domainName = null; String acctName = null; String origin_server = null; CIFSContext origin_ctx = null; /** * Construct a SID from it's binary representation. * * * @param src
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
internal/config/browser/browser.go
var configLock sync.RWMutex // Config storage class configuration type Config struct { CSPPolicy string `json:"csp_policy"` HSTSSeconds int `json:"hsts_seconds"` HSTSIncludeSubdomains bool `json:"hsts_include_subdomains"` HSTSPreload bool `json:"hsts_preload"` ReferrerPolicy string `json:"referrer_policy"` } // Update Updates browser with new config
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 00:58:58 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.dataconfig; /** * @author codelibs * @author Keiichi Watanabe */ public class SearchForm { public String name; public String handlerName; public String description;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 848 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchLogEvent.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.util.Map; public interface SearchLogEvent { String getId(); Long getVersionNo(); Map<String, Object> toSource(); String getEventType();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 826 bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
* @return {@literal String}の{@literal List} */ protected static List<String> toStringList(final CharSequence[] array) { final List<String> list = newArrayList(array.length); for (final CharSequence element : array) { list.add(element.toString()); } return list; } /** * 対象のプロパティかどうかを返します。 * * @param name * プロパティ名
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
} public DcerpcException(String msg) { super(msg); } public DcerpcException(String msg, Throwable rootCause) { super(msg); this.rootCause = rootCause; } public int getErrorCode() { return error; } public Throwable getRootCause() { return rootCause; } public String toString() { if (rootCause != null) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/DefaultModelVersionProcessor.java
public class DefaultModelVersionProcessor implements ModelVersionProcessor { private static final String SHA1_PROPERTY = "sha1"; private static final String CHANGELIST_PROPERTY = "changelist"; private static final String REVISION_PROPERTY = "revision"; @Override public boolean isValidProperty(String property) { return REVISION_PROPERTY.equals(property)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/Certificates.kt
import java.security.cert.X509Certificate import okio.Buffer import okio.ByteString import okio.ByteString.Companion.toByteString /** * Decodes a multiline string that contains a [certificate][certificatePem] which is * [PEM-encoded][rfc_7468]. A typical input string looks like this: * * ``` * -----BEGIN CERTIFICATE----- * MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVl
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0)