- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 412 for Split (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
/** * A directory to store downloaded files. */ protected File baseDir; protected File createFile(final String path) { final String[] paths = path.split("/"); File targetFile = baseDir; for (int i = 0; i < paths.length - 1; i++) { File file = new File(targetFile, paths[i]); if (file.exists()) { if (!file.isDirectory()) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
final String value = classAttr.getNodeValue(); if (StringUtil.isNotBlank(value)) { final String[] values = value.split("\\."); nameSet.add(values[values.length - 1]); } } } } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/webapp/js/search.js
buf.push(encodeURIComponent(hashStr)); buf.push(hashStr); } }); $result.on("click", "a.favorite", function(e) { var $favorite = $(this), values = $favorite.attr("href").split("#"), actionUrl, docId; if (values.length === 2 && $queryId.length > 0) { docId = values[1]; actionUrl = contextPath + "/api/v1/documents/" + docId + "/favorite"; $.ajax({
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 7.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java
import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import org.checkerframework.checker.nullness.qual.Nullable; /** * Derived suite generators for Guava collection interfaces, split out of the suite builders so that * they are available to GWT. * * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault public final class DerivedGoogleCollectionGenerators {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
doSetupServerConfig(logger, props, "sslProtocol", v -> sslHostConfig.setSslProtocol(v)); doSetupServerConfig(logger, props, "enabledProtocols", v -> sslHostConfig.setEnabledProtocols(v.trim().split(","))); sslHostConfig.addCertificate(certificate); connector.addSslHostConfig(sslHostConfig); } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/sepa.js
23"],["CV",25,"F21"],["DZ",24,"F20"],["IR",26,"F22"],["JO",30,"A04F22"],["MG",27,"F23"],["ML",28,"U01F23"],["MZ",25,"F21"],["QA",29,"U04A21"],["SN",28,"U01F23"],["UA",29,"F25"]],c=function(a){a=a.replace(/\s+/g,""),a=a.substr(4)+a.substr(0,4),a=a.split("").map(function(a){var b=a.charCodeAt(0);return b>="A".charCodeAt(0)&&b<="Z".charCodeAt(0)?b-"A".charCodeAt(0)+10:a}).join("");for(var b,c=a;c.length>2;)b=c.slice(0,9),c=(parseInt(b,10)%97).toString()+c.slice(b.length);return parseInt(c,10)%97===...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 3.4K bytes - Viewed (0) -
internal/config/compress/compress.go
Value: DefaultMimeTypes, }, } ) // Parses the given compression exclude list `extensions` or `content-types`. func parseCompressIncludes(include string) ([]string, error) { includes := strings.Split(include, config.ValueSeparator) for _, e := range includes { if len(e) == 0 { return nil, config.ErrInvalidCompressionIncludesValue(nil).Msg("extension/mime-type cannot be empty") } if e == "/" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
"JavaxInjectOnAbstractMethod", // We use abstract injection as a pattern "JavaUtilDate", // We are fine with using Date "StringSplitter", // We are fine with using String.split() as is ) project.plugins.withType<JavaBasePlugin> { project.extensions.getByName<SourceSetContainer>("sourceSets").configureEach {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 6.1K bytes - Viewed (0) -
tests/callbacks_test.go
} func getFuncName(fc interface{}) string { reflectValue, ok := fc.(reflect.Value) if !ok { reflectValue = reflect.ValueOf(fc) } fnames := strings.Split(runtime.FuncForPC(reflectValue.Pointer()).Name(), ".") return fnames[len(fnames)-1] } func c1(*gorm.DB) {} func c2(*gorm.DB) {} func c3(*gorm.DB) {} func c4(*gorm.DB) {} func c5(*gorm.DB) {}
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 26 03:33:36 UTC 2024 - 7.2K bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
pluginConfig := plugin.Config{ PluginLogLevel: cfg.PluginLogLevel, CNIAgentRunDir: cfg.CNIAgentRunDir, AmbientEnabled: cfg.AmbientEnabled, ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","), } pluginConfig.Name = "istio-cni" pluginConfig.Type = "istio-cni" pluginConfig.CNIVersion = "0.3.1" marshalledJSON, err := json.MarshalIndent(pluginConfig, "", " ")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 8.2K bytes - Viewed (0)