Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for ISO (0.02 sec)

  1. internal/bucket/object/lock/lock.go

    	ErrMalformedBucketObjectConfig = errors.New("invalid bucket object lock config")
    	// ErrInvalidRetentionDate - indicates that retention date needs to be in ISO 8601 format
    	ErrInvalidRetentionDate = errors.New("date must be provided in ISO 8601 format")
    	// ErrPastObjectLockRetainDate - indicates that retention date must be in the future
    	ErrPastObjectLockRetainDate = errors.New("the retain until date must be in the future")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. cmd/bucket-lifecycle-handlers_test.go

    			lifecycleResponse:  []byte(``),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "InvalidArgument",
    				Message:  "Date must be provided in ISO 8601 format",
    			},
    
    			shouldPass: false,
    		},
    		{
    			method:             http.MethodPut,
    			bucketName:         bucketName,
    			accessKey:          creds.AccessKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/compress/gzip/gzip.go

    	if err != nil {
    		return err
    	}
    	_, err = z.w.Write(b)
    	return err
    }
    
    // writeString writes a UTF-8 string s in GZIP's format to z.w.
    // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
    func (z *Writer) writeString(s string) (err error) {
    	// GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
    	needconv := false
    	for _, v := range s {
    		if v == 0 || v > 0xff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/runtime/string.go

    //
    //	^[0-9]+(([KMGT]i)?B)?$
    //
    // In other words, an integer byte count with an optional unit
    // suffix. Acceptable suffixes include one of
    // - KiB, MiB, GiB, TiB which represent binary IEC/ISO 80000 units, or
    // - B, which just represents bytes.
    //
    // Returns an int64 because that's what its callers want and receive,
    // but the result is always non-negative.
    func parseByteCount(s string) (int64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/time/format.go

    //
    //	"-0700"     ±hhmm
    //	"-07:00"    ±hh:mm
    //	"-07"       ±hh
    //	"-070000"   ±hhmmss
    //	"-07:00:00" ±hh:mm:ss
    //
    // Replacing the sign in the format with a Z triggers
    // the ISO 8601 behavior of printing Z instead of an
    // offset for the UTC zone. Thus:
    //
    //	"Z0700"      Z or ±hhmm
    //	"Z07:00"     Z or ±hh:mm
    //	"Z07"        Z or ±hh
    //	"Z070000"    Z or ±hhmmss
    //	"Z07:00:00"  Z or ±hh:mm:ss
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/time/time.go

    	// January 1 of the absolute year, like January 1 of 2001, was a Monday.
    	sec := (abs + uint64(Monday)*secondsPerDay) % secondsPerWeek
    	return Weekday(int(sec) / secondsPerDay)
    }
    
    // ISOWeek returns the ISO 8601 year and week number in which t occurs.
    // Week ranges from 1 to 53. Jan 01 to Jan 03 of year n might belong to
    // week 52 or 53 of year n-1, and Dec 29 to Dec 31 might belong to week 1
    // of year n+1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/net/http/request_test.go

    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRetentionDate: {
    		Code:           "InvalidRequest",
    		Description:    "Date must be provided in ISO 8601 format",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrPastObjectLockRetainDate: {
    		Code:           "InvalidRequest",
    		Description:    "the retain until date must be in the future",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    	block, _ := pem.Decode([]byte(certISOOID))
    	if cert, err := ParseCertificate(block.Bytes); err != nil {
    		t.Errorf("certificate with ISO OID failed to parse: %s", err)
    	} else if cert.SignatureAlgorithm == UnknownSignatureAlgorithm {
    		t.Errorf("ISO OID not recognised in certificate")
    	}
    }
    
    // certMultipleRDN contains a RelativeDistinguishedName with two elements (the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    `)
    	res := []byte("Hello world!\n")
    
    	conn := newTestConn()
    	handler := HandlerFunc(func(rw ResponseWriter, r *Request) {
    		rw.Header().Set("Content-Type", "text/html; charset=utf-8")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top