- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 202 for suffixes (0.07 sec)
-
docs/federation/lookup/README.md
``` In this configuration you can see `MINIO_ETCD_ENDPOINTS` points to the etcd backend which manages MinIO's `config.json` and bucket DNS SRV records. `MINIO_DOMAIN` indicates the domain suffix for the bucket which will be used to resolve bucket through DNS. For example if you have a bucket such as `mybucket`, the client can use now `mybucket.domain.com` to directly resolve itself to the right cluster. `MINIO_PUBLIC_IPS`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 4K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt
import okio.ByteString import okio.ByteString.Companion.encodeUtf8 import okio.FileSystem import okio.Path import okio.Path.Companion.toPath import okio.buffer import okio.gzip /** * Downloads the public suffix list from https://publicsuffix.org/list/public_suffix_list.dat and * transforms the file into an efficient format used by OkHttp. * *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:24:38 UTC 2024 - 6K bytes - Viewed (0) -
cmd/utils.go
func restQueries(keys ...string) []string { var accumulator []string for _, key := range keys { accumulator = append(accumulator, key, "{"+key+":.*}") } return accumulator } // Suffix returns the longest common suffix of the provided strings func lcpSuffix(strs []string) string { return lcp(strs, false) } func lcp(strs []string, pre bool) string { // short-circuit empty list if len(strs) == 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 31.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final String suffix = "." + imageExtention; try (Stream<Path> paths = Files.walk(basePath)) { paths.filter(path -> path.toFile().getName().endsWith(imageExtention)).forEach(path -> { final Path subPath = basePath.relativize(path); final String docId = subPath.toString().replace("/", StringUtil.EMPTY).replace(suffix, StringUtil.EMPTY);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 21.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FormBodyTest.kt
.build() val buffer = Buffer() body.writeTo(buffer) buffer.skip(3) // Skip "a=b" prefix. return buffer.readUtf8(buffer.size - 1) // Skip the "c" suffix. } @Test fun manualCharset() { val body = FormBody.Builder(StandardCharsets.ISO_8859_1) .add("name", "Nicolás") .build() val expected = "name=Nicol%E1s"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/index.jsp
<div class="alert alert-info">${msg}</div> </la:info> <la:errors header="errors.front_header" footer="errors.front_footer" prefix="errors.front_prefix" suffix="errors.front_suffix" /> </div> <fieldset> <legend><la:message key="labels.search" /></legend> <div class="clearfix"> <div class="mx-auto col-10 col-sm-8 col-md-8 col-lg-6">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
istioctl/pkg/validate/validate_test.go
in: versionLabelMissingDeployment, valid: true, }, { name: "valid port naming service", in: validPortNamingSvc, valid: true, }, { name: "valid port naming with suffix service", in: validPortNamingWithSuffixSvc, valid: true, }, { name: "invalid port naming service", in: invalidPortNamingSvc, valid: false, }, {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 02 16:18:14 UTC 2024 - 21.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
* large that doing the lookup is noticeably slower than redoing the work would be. * * Ideally we'd have a real eviction policy, but until we see a problem in practice, I hope * that this will suffice. I have not even benchmarked with different size limits. */ if (validClasses.size() > 1000) { validClasses.clear(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:40:56 UTC 2024 - 11.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
responseBodyComplete() throw e } bytesRemainingInChunk -= read return read } private fun readChunkSize() { // Read the suffix of the previous chunk. if (bytesRemainingInChunk != NO_CHUNK_YET) { source.readUtf8LineStrict() } try { bytesRemainingInChunk = source.readHexadecimalUnsignedLong()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
} return resp } func getMatches(f *listener.FilterChainMatch) string { match := f if match == nil { match = &listener.FilterChainMatch{} } // filterChaince also has SuffixLen, SourceType, SourcePrefixRanges which are not rendered. descrs := []string{} if len(match.ServerNames) > 0 { descrs = append(descrs, fmt.Sprintf("SNI: %s", strings.Join(match.ServerNames, ","))) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0)