Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Nash (0.33 sec)

  1. cmd/object-handlers.go

    	if !etag.ContentMD5Requested(r.Header) && (crypto.S3KMS.IsRequested(r.Header) || crypto.SSEC.IsRequested(r.Header) || !globalServerCtxt.StrictS3Compat) {
    		forceMD5 = mustGetUUIDBytes()
    	}
    	hashReader, err := hash.NewReaderWithOpts(ctx, reader, hash.Options{
    		Size:       size,
    		MD5Hex:     md5hex,
    		SHA256Hex:  sha256hex,
    		ActualSize: actualSize,
    		DisableMD5: false,
    		ForceMD5:   forceMD5,
    	})
    	if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

        - [Removed](#removed-7)
    
    <!-- END MUNGE: GENERATED_TOC -->
    
    # v1.30.0
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.30.0
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.30.0/kubernetes.tar.gz) | `1abe2ea09c08787dfa85450d026499a7a716bb771ff5af0aff1ac651b0059c0aac7a4e8558ef1eddffd4ccf1871daa9086d0be2e3ed8bed47f8c9930e52578ef`
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			}
    		}
    	}()
    
    	var (
    		hr    *hash.Reader
    		pInfo minio.ObjectPart
    	)
    
    	var objectSize int64
    	for _, partInfo := range objInfo.Parts {
    		if crypto.SSEC.IsEncrypted(objInfo.UserDefined) {
    			hr, err = hash.NewReader(ctx, io.LimitReader(r, partInfo.Size), partInfo.Size, "", "", partInfo.ActualSize)
    		} else {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  4. cmd/object-handlers_test.go

    	"crypto/sha1"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/xml"
    	"fmt"
    	"hash"
    	"hash/crc32"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"path"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirJvmErrors.CONCURRENT_HASH_MAP_CONTAINS_OPERATOR.errorFactory) { firDiagnostic ->
            ConcurrentHashMapContainsOperatorErrorImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirJvmErrors.CONCURRENT_HASH_MAP_CONTAINS_OPERATOR.warningFactory) { firDiagnostic ->
            ConcurrentHashMapContainsOperatorWarningImpl(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

            }
        }
    
        /**
         * @see java.lang.Object#hashCode()
         */
        public int hashCode() {
            return java.util.Objects.hash(getArtifactId(), getGroupId(), getVersion());
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class locationTracker="locations">
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	}
    }
    
    func getMinIOCommitMD() MetricDescription {
    	return MetricDescription{
    		Namespace: minioMetricNamespace,
    		Subsystem: softwareSubsystem,
    		Name:      commitInfo,
    		Help:      "Git commit hash for the MinIO release",
    		Type:      gaugeMetric,
    	}
    }
    
    func getS3TTFBDistributionMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: ttfbSubsystem,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top