- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 20 for hasRule (0.04 sec)
-
src/archive/tar/strconv.go
// license that can be found in the LICENSE file. package tar import ( "bytes" "fmt" "strconv" "strings" "time" ) // hasNUL reports whether the NUL character exists within s. func hasNUL(s string) bool { return strings.Contains(s, "\x00") } // isASCII reports whether the input is an ASCII C-style string. func isASCII(s string) bool { for _, c := range s {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
boolean hasWeb = false; boolean hasFile = false; for (final ProtocolType type : values) { if (type == ProtocolType.WEB) { hasWeb = true; } else if (type == ProtocolType.FILE) { hasFile = true; } } assertTrue("Should have WEB protocol type", hasWeb);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 21K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
if (cached != null // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) { return cached; } List<Dependency> dependencies; List<Dependency> managedDependencies = null;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
systemHelper.setupAdminHtmlData(this, runtime); final Boolean editable = getUserBean().map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()) || user.hasRole(getActionRole())) .orElse(false); runtime.registerData("editable", editable); runtime.registerData("editableClass", editable ? StringUtil.EMPTY : "disabled");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
// If data is not xlv2, it is returned in full. func readXLMetaNoData(r io.Reader, size int64) ([]byte, error) { initial := size hasFull := true if initial > metaDataReadDefault { initial = metaDataReadDefault hasFull = false } buf := metaDataPoolGet()[:initial] _, err := io.ReadFull(r, buf) if err != nil { return nil, fmt.Errorf("readXLMetaNoData(io.ReadFull): %w", err)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
src/main/resources/suggest_indices/_cloud/suggest_analyzer.json
"latvian_stop": { "type": "stop", "stopwords": "_latvian_" }, "latvian_keywords": { "type": "keyword_marker", "keywords": ["sveiki", "pasaule", "meklēšana"] }, "latvian_stemmer": { "type": "stemmer", "language": "latvian" }, "lithuanian_stop": { "type": "stop",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 57.4K bytes - Viewed (1) -
src/main/resources/suggest_indices/_aws/suggest_analyzer.json
"latvian_stop": { "type": "stop", "stopwords": "_latvian_" }, "latvian_keywords": { "type": "keyword_marker", "keywords": ["sveiki", "pasaule", "meklēšana"] }, "latvian_stemmer": { "type": "stemmer", "language": "latvian" }, "lithuanian_stop": { "type": "stop",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Mar 24 12:55:37 UTC 2021 - 57.4K bytes - Viewed (0) -
src/archive/tar/common.go
// Technically, it is required for uname and gname, // but neither GNU nor BSD tar checks for it. tooLong := len(s) > size allowLongGNU := paxKey == paxPath || paxKey == paxLinkpath if hasNUL(s) || (tooLong && !allowLongGNU) { whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%q", name, s) format.mustNotBe(FormatGNU) } if !isASCII(s) || tooLong { canSplitUSTAR := paxKey == paxPath
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Sep 13 21:03:27 UTC 2024 - 24.5K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess.json
}, "latvian_keywords": { "type": "keyword_marker", "keywords": ["sveiki", "pasaule", "meklēšana"] }, "latvian_stemmer": { "type": "stemmer", "language": "latvian" }, "latvian_override": { "type": "stemmer_override",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess.json
}, "latvian_keywords": { "type": "keyword_marker", "keywords": ["sveiki", "pasaule", "meklēšana"] }, "latvian_stemmer": { "type": "stemmer", "language": "latvian" }, "latvian_override": { "type": "stemmer_override",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 117.3K bytes - Viewed (0)