Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for EC (0.2 sec)

  1. internal/event/target/testdata/contrib/certs/nats_client_key.pem

    -----BEGIN EC PRIVATE KEY----- MHcCAQEEIBluB2BuspJc/ZwNmygNw06NbdTZDroAo AwEHoUQDQgAEQIWK0F2G+e4AaYcBT9aOUuwo8aBig 4rCvhUktmLZbVO3DOy+wHbiyG7hJxhx2EA== -----END EC PRIVATE KEY-----...
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 227 bytes
    - Viewed (0)
  2. internal/config/storageclass/storage-class_test.go

    		expectedError   error
    	}{
    		{
    			"EC:3",
    			StorageClass{
    				Parity: 3,
    			},
    			nil,
    		},
    		{
    			"EC:4",
    			StorageClass{
    				Parity: 4,
    			},
    			nil,
    		},
    		{
    			"AB:4",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New("Unsupported scheme AB. Supported scheme is EC"),
    		},
    		{
    			"EC:4:5",
    			StorageClass{
    				Parity: 4,
    			},
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  3. internal/config/errors.go

    		"Please check the value",
    		`MINIO_STORAGE_CLASS_STANDARD: Format "EC:<Default_Parity_Standard_Class>" (e.g. "EC:3"). This sets the number of parity drives for MinIO server in Standard mode. Objects are stored in Standard mode, if storage class is not defined in Put request
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 18 22:25:32 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  4. internal/event/target/testdata/contrib/certs/nats_server_key.pem

    -----BEGIN EC PRIVATE KEY----- MHcCAQEEILFuMS2xvsc/CsuqtSv3S2iSCcc28rZs AwEHoUQDQgAEqJSlCOxV SSC/X3+aUQzflOkL8MJQ5lxKodW== -----END EC PRIVATE KEY-----...
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 227 bytes
    - Viewed (0)
  5. docs/tls/README.md

    ```sh
    openssl ecparam -genkey -name prime256v1 | openssl ec -out private.key
    ```
    
    A response similar to this one should be displayed:
    
    ```
    read EC key
    writing EC key
    ```
    
    Alternatively, use the following command to generate a private ECDSA key protected by a password:
    
    ```sh
    openssl ecparam -genkey -name prime256v1 | openssl ec -aes256 -out private.key -passout pass:PASSWORD
    ```
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 8.4K bytes
    - Viewed (0)
  6. internal/config/identity/openid/jwks_test.go

    		t.Fatalf("Failed to find the expected number of kids: 3, got %d", len(kids))
    	}
    }
    
    // A.1 - Example public keys
    func TestPublicKey(t *testing.T) {
    	const jsonkey = `{"keys":
           [
             {"kty":"EC",
              "crv":"P-256",
              "x":"MKBCTNIcKUSDii11ySs3526iDZ8AiTo7Tu6KPAqv7D4",
              "y":"4Etl6SRW2YiLUrN5vfvVHuhp7x8PxltmWWlbbM4IFyM",
              "use":"enc",
              "kid":"1"},
    
             {"kty":"RSA",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 9.8K bytes
    - Viewed (0)
  7. docs/distributed/README.md

    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    - **Each object is written to a single EC set, and therefore is spread over no more than 16 drives.**
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  8. docs/erasure/storage-class/README.md

    The default value for the `STANDARD` storage class depends on the number of volumes in the erasure set:
    
    | Erasure Set Size | Default Parity (EC:N) |
    |------------------|-----------------------|
    | 5 or fewer       |                 EC:2  |
    | 6-7              |                 EC:3  |
    | 8 or more        |                 EC:4  |
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 5.8K bytes
    - Viewed (1)
  9. docs/LICENSE

         public may access the material from a place and at a time
         individually chosen by them.
    
      j. Sui Generis Database Rights means rights other than copyright
         resulting from Directive 96/9/EC of the European Parliament and of
         the Council of 11 March 1996 on the legal protection of databases,
         as amended and/or succeeded, as well as other essentially
         equivalent rights anywhere in the world.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon May 10 16:50:06 GMT 2021
    - 18.2K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    		return nil, setupType, err
    	}
    
    	_, serverAddrPort := mustSplitHostPort(serverAddr)
    
    	poolEndpoints := make(PoolEndpointList, len(poolsLayout))
    
    	// For single arg, return single drive EC setup.
    	if isSingleDriveLayout(poolsLayout...) {
    		endpoint, err := NewEndpoint(poolsLayout[0].layout[0][0])
    		if err != nil {
    			return nil, setupType, err
    		}
    		if err := endpoint.UpdateIsLocal(); err != nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top