Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 807 for rotation (0.24 sec)

  1. docs/security/README.md

                        | object_metadata_1 |               | object_metadata_2 |
                        +-------------------+               +-------------------+
    ```
    
    #### Key rotation - Basic Operation
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 13.8K bytes
    - Viewed (0)
  2. cmd/batch-rotate.go

    //go:generate msgp -file $GOFILE -unexported
    
    // BatchKeyRotationType defines key rotation type
    type BatchKeyRotationType string
    
    const (
    	sses3  BatchKeyRotationType = "sse-s3"
    	ssekms BatchKeyRotationType = "sse-kms"
    )
    
    // BatchJobKeyRotateEncryption defines key rotation encryption options passed
    type BatchJobKeyRotateEncryption struct {
    	Type       BatchKeyRotationType `yaml:"type" json:"type"`
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. internal/config/batch/batch.go

    func (opts Config) ReplicationWait() time.Duration {
    	configMu.RLock()
    	defer configMu.RUnlock()
    
    	return opts.ReplicationWorkersWait
    }
    
    // KeyRotationWait returns the duration for which a batch key-rotation worker
    // would wait before working on next object.
    func (opts Config) KeyRotationWait() time.Duration {
    	configMu.RLock()
    	defer configMu.RUnlock()
    
    	return opts.KeyRotationWorkersWait
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Dec 06 09:09:22 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. docs/kms/IAM.md

       change the cluster root credentials since they were used to en/decrypt the IAM data.
       So, both - the old and new credentials - had to be present at the same time during a rotation
       and the old credentials had to be removed once the rotation completed. This process is now gone.
       The root credentials can now be changed easily.
    
    > Does this mean I need an enterprise KMS setup to run MinIO (securely)?
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. .github/workflows/trusted_partners.js

          assignees.push('hawkinsp', 'yashk2810', 'skye');
        }
        if (lowercased_title.includes('xla') || lowercased_title.includes('gpu')) {
          assignees.push('cheshire', 'gcforster', 'reedwm', 'chsigg', 'xla-rotation');
        }
        if (lowercased_title.includes('tf')) {
          assignees.push('rohan100jain', 'bfontain');
        }
      }
      if (lowercased_title.includes('linaro') && domain.includes('linaro.org')) {
    JavaScript
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 07 13:52:04 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Bytes.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          byte tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  7. README.md

        - **Pilot** - Responsible for configuring the proxies at runtime.
    
        - **Citadel** - Responsible for certificate issuance and rotation.
    
        - **Galley** - Responsible for validating, ingesting, aggregating, transforming and distributing config within Istio.
    
    - **Operator** - The component provides user friendly options to operate the Istio service mesh.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 15:28:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Booleans.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          boolean tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  9. architecture/security/istio-agent.md

    the certificates are persisted to disk, rather than kept in memory like in the standard Kubernetes deployment.
    
    ## Certificate Rotation
    
    The agent also handles rotating certificates near expiration. It does so by triggering a callback from the `SecretManager` to the SDS server
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Chars.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          char tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23.5K bytes
    - Viewed (0)
Back to top