Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 2048 (0.22 sec)

  1. cmd/xl-storage-disk-id-check.go

    			if errp != nil {
    				err := *errp
    				if err == nil || errors.Is(err, io.EOF) {
    					p.health.logSuccess()
    				}
    			}
    			si(errp)
    		})
    	}, nil
    }
    
    var toWrite = []byte{2048: 42}
    
    // monitorDiskStatus should be called once when a drive has been marked offline.
    // Once the disk has been deemed ok, it will return to online status.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 33K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    			return updatedAt, err
    		}
    
    		policyBuf, err := json.Marshal(opts.sessionPolicy)
    		if err != nil {
    			return updatedAt, err
    		}
    
    		if len(policyBuf) > 2048 {
    			return updatedAt, errSessionPolicyTooLarge
    		}
    
    		// Overwrite session policy claims.
    		m[policy.SessionPolicyName] = base64.StdEncoding.EncodeToString(policyBuf)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  3. cmd/erasure-server-pool.go

    		}
    	)
    
    	// Maximum number of reusable buffers per node at any given point in time.
    	n := uint64(1024) // single node single/multiple drives set this to 1024 entries
    
    	if globalIsDistErasure {
    		n = 2048
    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  4. RELEASE.md

    # Release 1.12.3
    
    ## Bug Fixes and Other Changes
    
    *   Updates `png_archive` dependency to 1.6.37 to not be affected by
        CVE-2019-7317, CVE-2018-13785, and CVE-2018-14048.
    *   Updates `sqlite` dependency to 3.28.0 to not be affected by CVE-2018-20506,
        CVE-2018-20346, and CVE-2018-20505.
    
    # Release 1.12.2
    
    ## Bug Fixes and Other Changes
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  5. cmd/object-handlers_test.go

    		// Expected to return HTTP response status code 204.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Attempt to delete an object which is already deleted.
    		// Still should return http response status 204.
    		{
    			bucketName: bucketName,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  6. CREDITS

    github.com/acarl005/stripansi
    https://github.com/acarl005/stripansi
    ----------------------------------------------------------------
    MIT License
    
    Copyright (c) 2018 Andrew Carlson
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * ๐ŸŒ Initialize new language Korean for translations. PR [#2018](https://github.com/tiangolo/fastapi/pull/2018) by [@hard-coders](https://github.com/hard-coders).
    * ๐ŸŒ Add Portuguese translation of Deployment. PR [#1374](https://github.com/tiangolo/fastapi/pull/1374) by [@Serrones](https://github.com/Serrones).
    
    ### Internal
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  8. doc/go_spec.html

    One of the integer part or the fractional part may be elided; the radix point may be elided as well,
    but the exponent part is required. (This syntax matches the one given in IEEE 754-2008 ยง5.12.3.)
    An exponent value exp scales the mantissa (integer and fractional part) by 2<sup>exp</sup>
    [<a href="#Go_1.13">Go 1.13</a>].
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top