- Sort Score
- Result 10 results
- Languages All
Results 1091 - 1100 of 6,043 for jstring (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java
public class SuggestResponse implements Response { protected final String index; protected final long tookMs; protected final List<String> words; protected final int num; protected final long total; protected final List<SuggestItem> items; public SuggestResponse(final String index, final long tookMs, final List<String> words, final long total, final List<SuggestItem> items) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java
// still got data if ((!exit) && (tokStarted)) { retVal = tokBuf.toString(); } } return optional ? "?" + retVal : retVal; } public static String substVars( String value, String name, Map<String, String> props, Function<String, String> callback) { return DefaultInterpolator.substVars(value, name, null, props, callback, null, false);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/ByteSourceTester.java
static TestSuite suiteForString( ByteSourceFactory factory, String string, String name, String desc) { TestSuite suite = suiteForBytes(factory, string.getBytes(UTF_8), name, desc, true); CharSourceFactory charSourceFactory = SourceSinkFactories.asCharSourceFactory(factory); suite.addTest( CharSourceTester.suiteForString( charSourceFactory, string, name + ".asCharSource[Charset]", desc)); return suite; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java
try { try { if (String.class == type) { String value = (String) field.get(target); if (value != null) { String interpolated = modelInterpolator.interpolateInternal(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
protected String url; protected Integer accessTimeout; // sec protected CloseableHttpClient httpClient; protected Integer connectionTimeout; protected Integer soTimeout; protected Map<String, AuthSchemeProvider> authSchemeProviderMap; protected String userAgent = "Crawler";
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 10K bytes - Viewed (0) -
internal/s3select/errors.go
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 { return err.statusCode } func (err *s3Error) Error() string { return err.message }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 14 16:48:36 UTC 2022 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/MyBean3.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1011 bytes - Viewed (0) -
cmd/signature-v2.go
func canonicalizedAmzHeadersV2(headers http.Header) string { var keys []string keyval := make(map[string]string, len(headers)) for key := range headers { lkey := strings.ToLower(key) if !strings.HasPrefix(lkey, "x-amz-") { continue } keys = append(keys, lkey) keyval[lkey] = strings.Join(headers[key], ",") } sort.Strings(keys) var canonicalHeaders []string for _, key := range keys {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
final List<String> sessionIdList = new ArrayList<>(); dataCrawlingThreadList.clear(); final List<String> dataCrawlingThreadStatusList = new ArrayList<>(); for (final DataConfig dataConfig : configList) { final DataStoreParams initParamMap = new DataStoreParams(); final String sid = ComponentUtil.getCrawlingConfigHelper().store(sessionId, dataConfig);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12K bytes - Viewed (0) -
misc/ios/go_ios_exec.go
<key>CFBundleShortVersionString</key><string>1.0</string> <key>CFBundleIdentifier</key><string>` + bundleID + `</string> <key>CFBundleResourceSpecification</key><string>ResourceRules.plist</string> <key>LSRequiresIPhoneOS</key><true/> <key>CFBundleDisplayName</key><string>gotest</string> <key>GoExecWrapperWorkingDirectory</key><string>` + pkgpath + `</string> </dict> </plist> ` } func entitlementsPlist() string {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jun 18 16:32:49 UTC 2024 - 8.7K bytes - Viewed (0)