- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 454 for rsplit (0.04 seconds)
-
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.helper; import static org.codelibs.core.stream.StreamUtil.split; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; import java.util.regex.Pattern;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.client; import static org.codelibs.core.stream.StreamUtil.split; import org.codelibs.core.lang.StringUtil; import org.codelibs.fesen.client.HttpClient; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.client.FesenClient;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 2.6K bytes - Click Count (0) -
schema/utils.go
settings := map[string]string{} names := strings.Split(str, sep) var parsedNames []string for i := 0; i < len(names); i++ { s := names[i] for strings.HasSuffix(s, "\\") && i+1 < len(names) { i++ s = s[:len(s)-1] + sep + names[i] } parsedNames = append(parsedNames, s) } for _, tag := range parsedNames { values := strings.Split(tag, ":") k := strings.TrimSpace(strings.ToUpper(values[0]))
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Thu Oct 30 11:15:36 GMT 2025 - 5.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/RequestTest.java
void testInheritedMethods() { // Given when(request.isResponseAsync()).thenReturn(true); when(request.getNext()).thenReturn(nextRequest); when(request.split()).thenReturn(nextRequest); when(request.allowChain(nextRequest)).thenReturn(true); when(request.createCancel()).thenReturn(nextRequest); when(request.size()).thenReturn(1024);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.5K bytes - Click Count (0) -
src/cmd/addr2line/addr2line_test.go
if err != nil { t.Fatalf("go tool addr2line %v: %v\n%s", os.Args[0], err, string(out)) } f := strings.Split(string(out), "\n") if len(f) < 3 && f[2] == "" { t.Fatal("addr2line output must have 2 lines") } funcname = f[0] pathAndLineNo := f[1] f = strings.Split(pathAndLineNo, ":") if runtime.GOOS == "windows" && len(f) == 3 { // Reattach drive letter. f = []string{f[0] + ":" + f[1], f[2]} }Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Sep 06 13:23:48 GMT 2024 - 3.2K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/argumentproviders/CiEnvironmentProvider.kt
fun collectMirrorUrls(): Map<String, String> = // expected env var format: repo1_id:repo1_url,repo2_id:repo2_url,... System.getenv("REPO_MIRROR_URLS")?.ifBlank { null }?.split(',')?.associate { nameToUrl -> val (name, url) = nameToUrl.split(':', limit = 2) name to url } ?: emptyMap()
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Aug 19 10:37:27 GMT 2025 - 2.5K bytes - Click Count (0) -
PULL_REQUESTS_ETIQUETTE.md
- Adheres to MinIO’s coding standards (e.g., Go style, error handling, testing). PRs must flow smoothly through review to reach production. Large PRs should be split into smaller, manageable ones. ## Submitting PRs 1. **Title and Summary**: - Use a scannable title: `[Subsystem] Action Description #Issue` (e.g., `[IAM] Add role-based access control #567`).
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun May 25 16:32:03 GMT 2025 - 4.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
*/ @PostConstruct public void init() { StreamUtil.split(ComponentUtil.getFessConfig().getIndexFiletype(), "\n") .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> { final String[] values = StringUtils.split(s, "=", 2); if (values.length == 2) { mimetypeMap.put(values[0], values[1]);Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.4K bytes - Click Count (0) -
utils/utils.go
func NestedRelationName(prefix, name string) string { return prefix + nestedRelationSplit + name } // SplitNestedRelationName Split nested relationships to `[]string{"Manager","Company"}` func SplitNestedRelationName(name string) []string { return strings.Split(name, nestedRelationSplit) } // JoinNestedRelationNames nested relationships like `Manager__Company`
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Thu Oct 30 10:56:26 GMT 2025 - 4.5K bytes - Click Count (0) -
internal/store/store.go
} return keyStr + k.Extension + func() string { if k.Compress { return compressExt } return "" }() } func getItemCount(k string) (count int, err error) { count = 1 v := strings.Split(k, ":") if len(v) == 2 { return strconv.Atoi(v[0]) } return count, err } func parseKey(k string) (key Key) { key.Name = k if strings.HasSuffix(k, compressExt) { key.Compress = true
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 4.2K bytes - Click Count (0)