MCPcopy
hub / github.com/minio/minio-go / hasInvalidXMLChar

Function hasInvalidXMLChar

api-remove.go:411–418  ·  view source on GitHub ↗
(str string)

Source from the content-addressed store, hash-verified

409}
410
411func hasInvalidXMLChar(str string) bool {
412 for _, s := range str {
413 if !validXMLChar(s) {
414 return true
415 }
416 }
417 return false
418}
419
420// Generate and call MultiDelete S3 requests based on entries received from the iterator.
421func (c *Client) removeObjectsIter(ctx context.Context, bucketName string, objectsIter iter.Seq[ObjectInfo], yield func(RemoveObjectResult) bool, opts RemoveObjectsOptions) {

Callers 2

removeObjectsIterMethod · 0.85
removeObjectsMethod · 0.85

Calls 1

validXMLCharFunction · 0.85

Tested by

no test coverage detected