Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for AMAZON (0.09 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

        }
    
        def "deterministically matches vendor over vendor-specific tool version"() {
            given:
            def metadata = [
                jvmMetadata("8.2", true, AMAZON),
                jvmMetadata("8.3", true, AMAZON),
                jvmMetadata("8.1", true, AMAZON),
                jvmMetadata("8.8", true, BELLSOFT),
                jvmMetadata("8.7", true, ORACLE),
                jvmMetadata("8.4", true, UNKNOWN),
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/volume/util/attach_limit_test.go

    	// When driverName is less than 39 characters
    	csiLimitKey := GetCSIAttachLimitKey("com.amazon.ebs")
    	if csiLimitKey != "attachable-volumes-csi-com.amazon.ebs" {
    		t.Errorf("Expected com.amazon.ebs got %s", csiLimitKey)
    	}
    
    	// When driver is longer than 39 chars
    	longDriverName := "com.amazon.kubernetes.eks.ec2.ebs/csi-driver"
    	csiLimitKeyLonger := GetCSIAttachLimitKey(longDriverName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 05 16:29:00 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/aws.go

    )
    
    // Approach derived from the following:
    // https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify_ec2_instances.html
    // https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
    
    // IsAWS returns whether the platform for bootstrapping is Amazon Web Services.
    func IsAWS(ipv6 bool) bool {
    	headers := requestHeaders(ipv6)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 03:52:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. docs/select/README.md

    - [The MinIO documentation website](https://min.io/docs/minio/linux/index.html)
    
    ## 6. Implementation Status
    
    - Full AWS S3 [SELECT SQL](https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference-select.html) syntax is supported.
    - All [operators](https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference-operators.html) are supported.
    - All aggregation, conditional, type-conversion and string functions are supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

    public interface JvmVendor {
    
        enum KnownJvmVendor {
            ADOPTIUM("adoptium", "temurin|adoptium|eclipse foundation", "Eclipse Temurin"),
            ADOPTOPENJDK("adoptopenjdk", "AdoptOpenJDK"),
            AMAZON("amazon", "Amazon Corretto"),
            APPLE("apple", "Apple"),
            AZUL("azul systems", "Azul Zulu"),
            BELLSOFT("bellsoft", "BellSoft Liberica"),
            GRAAL_VM("graalvm community", "GraalVM Community"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. docs/extensions/fan-out/README.md

    MinIO implements an S3 extension to the [PostUpload](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPOST.html) where in a special fan-out list is sent along with the TSB's for MinIO make multiple uploads from a single source stream. Optionally supports custom metadata, tags and other retention settings. All objects are also readable independently once upload is completed via the regular S3 [GetObject](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) API.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. docs/minio-limits.md

    ## List of Amazon S3 API's not supported on MinIO
    
    We found the following APIs to be redundant or less useful outside of AWS S3. If you have a different view on any of the APIs we missed, please consider opening a [GitHub issue](https://github.com/minio/minio/issues) with relevant details on why MinIO must implement them.
    
    ### List of Amazon S3 Bucket API's not supported on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/s3-zip-handlers.go

    			// As per "Permission" section in
    			// https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGET.html
    			// If the object you request does not exist,
    			// the error Amazon S3 returns depends on
    			// whether you also have the s3:ListBucket
    			// permission.
    			// * If you have the s3:ListBucket permission
    			//   on the bucket, Amazon S3 will return an
    			//   HTTP status code 404 ("no such key")
    			//   error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/volume/util/attach_limit.go

    	EBSNitroLimitRegex = "^[cmr]5.*|t3|z1d"
    	// DefaultMaxEBSVolumes is the limit for volumes attached to an instance.
    	// Amazon recommends no more than 40; the system root volume uses at least one.
    	// See http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/volume_limits.html#linux-specific-volume-limits
    	DefaultMaxEBSVolumes = 39
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
            writeJvmCriteria(JavaVersion.VERSION_17, "amazon", "unknownImplementation")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top