- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 494 for compatible (0.06 sec)
-
cmd/utils.go
type itemOrErr[V any] struct { Item V Err error } func filterStorageClass(ctx context.Context, s string) string { // Veeam 14.0 and later clients are not compatible with custom storage classes. if globalVeeamForceSC != "" && s != storageclass.STANDARD && s != storageclass.RRS && isVeeamClient(ctx) { return globalVeeamForceSC } return s }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0) -
cmd/endpoint.go
func (l EndpointServerPools) NEndpoints() (count int) { for _, ep := range l { count += len(ep.Endpoints) } return count } // GridHosts will return all peers, including local. // in websocket grid compatible format, The local peer // is returned as a separate string. func (l EndpointServerPools) GridHosts() (gridHosts []string, gridLocal string) { seenHosts := set.NewStringSet() for _, ep := range l {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 34.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* com.google.common.io.ByteStreams#newDataOutput()} to get a growable buffer. */ public static byte[] toByteArray(long value) { // Note that this code needs to stay compatible with GWT, which has known // bugs when narrowing byte casts of long values occur. byte[] result = new byte[8]; for (int i = 7; i >= 0; i--) { result[i] = (byte) (value & 0xffL); value >>= 8;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
helm-releases/minio-2.0.1.tgz
ps://slack.min.io) [](https://github.com/minio/minio/blob/master/LICENSE) MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. For more detailed documentation please visit [here](https://docs.minio.io/) Introduction ----------...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 31 09:09:09 UTC 2021 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
log.debug("Negotiation response on " + this.name + " :" + resp); } if (!resp.getResponse().isValid(getContext(), resp.getRequest())) { throw new SmbException("This client is not compatible with the server."); } final boolean serverRequireSig = resp.getResponse().isSigningRequired(); final boolean serverEnableSig = resp.getResponse().isSigningEnabled();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.facet_is_not_found=No encontrado labels.doc_score=Puntuación: labels.development_mode_warning=Se está ejecutando en modo de desarrollo. Instale OpenSearch por separado en un entorno de producción. labels.eol_error=Su sistema ya no es compatible. Consulte la página de fin de vida útil del producto para actualizar. labels.tooltip_search_view=Vista de búsqueda labels.tooltip_run_crawler=Ejecutar rastreador labels.tooltip_forum=Foro labels.tooltip_onlinehelp=Ayuda
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
helm-releases/minio-3.0.0.tgz
ps://slack.min.io) [](https://github.com/minio/minio/blob/master/LICENSE) MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. For more detailed documentation please visit [here](https://docs.minio.io/) Introduction ----------...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 02 01:47:43 UTC 2021 - 13.8K bytes - Viewed (0) -
cmd/server-main.go
} bootLogIf(GlobalContext, err) } if !globalServerCtxt.StrictS3Compat { warnings = append(warnings, color.YellowBold("Strict AWS S3 compatible incoming PUT, POST content payload validation is turned off, caution is advised do not use in production")) } }) if globalActiveCred.Equal(auth.DefaultCredentials) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
CHANGELOG/CHANGELOG-1.17.md
- mvdan.cc/interfacer: c200402 - mvdan.cc/lint: adc824a - mvdan.cc/unparam: fbb5962 - sourcegraph.com/sqs/pbtypes: d3ebe8f #### Changed - github.com/Azure/azure-sdk-for-go: v32.5.0+incompatible → v35.0.0+incompatible - github.com/Microsoft/go-winio: v0.4.11 → v0.4.14 - github.com/bazelbuild/bazel-gazelle: c728ce9 → 70208cb - github.com/bazelbuild/buildtools: 80c7f0d → 69366ca - github.com/beorn7/perks: 3a771d9 → v1.0.0
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
cmd/object-api-utils.go
func mustGetUUIDBytes() []byte { u, err := uuid.NewRandom() if err != nil { logger.CriticalIf(GlobalContext, err) } return u[:] } // Create an s3 compatible MD5sum for complete multipart transaction. func getCompleteMultipartMD5(parts []CompletePart) string { var finalMD5Bytes []byte for _, part := range parts { md5Bytes, err := hex.DecodeString(canonicalizeETag(part.ETag))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 25 15:08:54 UTC 2025 - 37.3K bytes - Viewed (0)