Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 689 for east (0.17 sec)

  1. internal/arn/arn_test.go

    				Service:      "iam",
    				Region:       "us-east-1",
    				ResourceType: "role",
    				ResourceID:   "my-role",
    			},
    			want: "arn:minio:iam:us-east-1::role/my-role",
    		},
    		{
    			arn: ARN{
    				Partition:    "minio",
    				Service:      "",
    				Region:       "us-east-1",
    				ResourceType: "role",
    				ResourceID:   "my-role",
    			},
    			want: "arn:minio::us-east-1::role/my-role",
    		},
    	}
    	for _, tt := range tests {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. internal/event/arn_test.go

    	testCases := []struct {
    		arn            ARN
    		expectedResult string
    	}{
    		{ARN{}, ""},
    		{ARN{TargetID{"1", "webhook"}, ""}, "arn:minio:sqs::1:webhook"},
    		{ARN{TargetID{"1", "webhook"}, "us-east-1"}, "arn:minio:sqs:us-east-1:1:webhook"},
    	}
    
    	for i, testCase := range testCases {
    		result := testCase.arn.String()
    
    		if result != testCase.expectedResult {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. test/typeparam/graph.go

    var zork = map[int]mazeRoom{
    	11: {exits: [10]int{north: 11, south: 12, east: 14}}, // west to Troll Room
    	12: {exits: [10]int{south: 11, north: 14, east: 13}},
    	13: {exits: [10]int{west: 12, north: 14, up: 16}},
    	14: {exits: [10]int{west: 13, north: 11, east: 15}},
    	15: {exits: [10]int{south: 14}},                   // Dead End
    	16: {exits: [10]int{east: 17, north: 13, sw: 18}}, // skeleton, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. samples/multicluster/README.md

    ## Creating East-West Gateway
    
    All configurations rely on a separate gateway deployment that is dedicated to
    east-west traffic. This is done to avoid having east-west traffic flooding
    the default north-south ingress gateway.
    
    Run the following command to deploy the east-west gateway to a primary cluster:
    
    ```bash
    export MESH=mesh1
    export CLUSTER=cluster1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. releasenotes/notes/gw-hostname-resolution.yaml

    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/44155
    releaseNotes:
      - |
        **Fixed** an issue where istiod does not retry resolving east-west gateway hostnames on failure.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
  6. internal/config/lambda/event/arn_test.go

    		arn            ARN
    		expectedResult string
    	}{
    		{ARN{}, ""},
    		{ARN{TargetID{"1", "webhook"}, ""}, "arn:minio:s3-object-lambda::1:webhook"},
    		{ARN{TargetID{"1", "webhook"}, "us-east-1"}, "arn:minio:s3-object-lambda:us-east-1:1:webhook"},
    	}
    
    	for i, testCase := range testCases {
    		result := testCase.arn.String()
    
    		if result != testCase.expectedResult {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. cmd/postpolicyform_test.go

    		// Expired policy document
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-location.yaml

          kind: ServiceImport
          name: store-west
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /east
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store-east
          port: 8080
      - backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 664 bytes
    - Viewed (0)
  9. docs/metrics/healthcheck/README.md

    ```
    curl http://minio1:9001/minio/health/cluster
    HTTP/1.1 503 Service Unavailable
    Accept-Ranges: bytes
    Content-Length: 0
    Server: MinIO
    Vary: Origin
    X-Amz-Bucket-Region: us-east-1
    X-Minio-Write-Quorum: 3
    X-Amz-Request-Id: 16239D6AB80EBECF
    X-Xss-Protection: 1; mode=block
    Date: Tue, 21 Jul 2020 00:36:14 GMT
    ```
    
    ### Cluster-readable probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/noIsolation/groovy/sources/steinbeck.txt

    the grapes of wrath
    cannery row
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
Back to top