- Sort Score
- Result 10 results
- Languages All
Results 3211 - 3220 of 6,120 for stringy (0.11 sec)
-
src/main/java/jcifs/SmbResourceLocator.java
* * @return The canonicalized URL of this SMB resource. */ String getCanonicalURL (); /** * @return The canonicalized UNC path of this SMB resource (relative to it's share) */ String getUNCPath (); /** * @return The canonicalized URL path (relative to the server/domain) */ String getURLPath (); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
private static final Logger logger = LogManager.getLogger(AdminAccesstokenAction.class); public static final String ROLE = "admin-accesstoken"; public static final String TOKEN = "token"; public static final String EXPIRES = "expires"; public static final String EXPIRED_TIME = "expiredTime"; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
boolean nonPooled ) { return getSmbTransport(tc, address, port, localAddr, localPort, hostName, nonPooled, false); } @Override public SmbTransportImpl getSmbTransport ( CIFSContext tc, Address address, int port, InetAddress localAddr, int localPort, String hostName, boolean nonPooled, boolean forceSigning ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
docs/zh/docs/advanced/additional-responses.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
} public OptionalEntity<StopwordsFile> getStopwordsFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId).filter(StopwordsFile.class::isInstance) .map(file -> OptionalEntity.of((StopwordsFile) file)).orElse(OptionalEntity.empty()); } public OptionalEntity<StopwordsItem> getStopwordsItem(final String dictId, final long id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
} public OptionalEntity<SynonymFile> getSynonymFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId).filter(SynonymFile.class::isInstance) .map(file -> OptionalEntity.of((SynonymFile) file)).orElse(OptionalEntity.empty()); } public OptionalEntity<SynonymItem> getSynonymItem(final String dictId, final long id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
private static final Integer I1 = -1; private static final Integer I2 = 3; private static final String S0 = "3"; private static final String S1 = "Ninety five"; private static final String S2 = "44 one million"; private static final String S3 = "Lowly laundry lefties"; private static final String S4 = "89273487U#*&#"; private static final Double D0 = 9.234d; private static final Double D1 = -1.2e55;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0) -
tests/test_request_body_parameters_media_type.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 6.4K bytes - Viewed (0) -
internal/s3select/sql/errors.go
package sql import "fmt" type s3Error struct { code string message string statusCode int cause error } func (err *s3Error) Cause() error { return err.cause } func (err *s3Error) ErrorCode() string { return err.code } func (err *s3Error) ErrorMessage() string { return err.message } func (err *s3Error) HTTPStatusCode() int {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
} i += len * 2; buf[i++] = (byte)'\0'; buf[i++] = (byte)'\0'; advance(i - index); } public String dec_ndr_string() throws NdrException { align(4); int i = index; String val = null; int len = Encdec.dec_uint32le(buf, i); i += 12; if (len != 0) { len--; int size = len * 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0)