Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for destination (0.21 sec)

  1. internal/bucket/replication/destination.go

    )
    
    // DestinationARNPrefix - destination ARN prefix as per AWS S3 specification.
    const DestinationARNPrefix = "arn:aws:s3:::"
    
    // DestinationARNMinIOPrefix - destination ARN prefix for MinIO.
    const DestinationARNMinIOPrefix = "arn:minio:replication:"
    
    // Destination - destination in ReplicationConfiguration.
    type Destination struct {
    	XMLName      xml.Name `xml:"Destination" json:"Destination"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 4K bytes
    - Viewed (2)
  2. internal/bucket/replication/replication_test.go

    			destBucket:            "destinationbucket",...
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  3. internal/bucket/replication/replication.go

    		return rules[i].Priority > rules[j].Priority && rules[i].Destination.String() == rules[j].Destination.String()
    	})
    
    	return rules
    }
    
    // GetDestination returns destination bucket and storage class.
    func (c Config) GetDestination() Destination {
    	if len(c.Rules) > 0 {
    		return c.Rules[0].Destination
    	}
    	return Destination{}
    }
    
    // Replicate returns true if the object should be replicated.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/sds/writer_test.go

    				secretItemColumns...),
    			unexpected: []string{"source", "destination", "certdata"},
    		},
    		{
    			name:   "test JSON output with a single secret item",
    			format: JSON,
    			items: []SecretItem{
    				{
    					Name:        "olinger",
    					Data:        "certdata",
    					Source:      "source",
    					Destination: "destination",
    					SecretMeta: SecretMeta{
    						Valid:        true,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri May 29 20:42:01 GMT 2020
    - 4.9K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe_test.go

    									{
    										Destination: &v1alpha32.Destination{
    											Host: "productpage",
    										},
    										Weight: 30,
    									},
    									{
    										Destination: &v1alpha32.Destination{
    											Host: "productpage2",
    										},
    										Weight: 20,
    									},
    									{
    										Destination: &v1alpha32.Destination{
    											Host: "productpage3",
    										},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  6. internal/bucket/replication/rule_test.go

    			opts:           ObjectOpts{Name: "c1test", DeleteMarker:...
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 4.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/compare/sds/util.go

    }
    
    // Source sets the source field on a secretItemBuilder
    func (s *secretItemBuilder) Source(source string) SecretItemBuilder {
    	s.source = source
    	return s
    }
    
    // Destination sets the destination field on a secretItemBuilder
    func (s *secretItemBuilder) Destination(dest string) SecretItemBuilder {
    	s.dest = dest
    	return s
    }
    
    // State sets the state of the secret on the agent or sidecar
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  8. istioctl/pkg/validate/validate_test.go

              host: c
              subset: v2
            weight: -15`
    	invalidVirtualServiceJSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    	"name": "invalid-virtual-service"
    },
    "spec": {
    	"http": [
    	{
    		"route": [
    		{
    			"destination": {
    			"host": "c",
    			"subset": "v1"
    			},
    			"weight": 75
    		},
    		{
    			"destination": {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    					mismatchNotes = append(mismatchNotes, fmt.Sprintf("Route to non-matching subset %s for (%s)",
    						dest.Destination.Subset,
    						renderMatches(route.Match)))
    					continue
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. cmd/storage-rest-common.go

    	storageRESTHealing       = "healing"
    	storageRESTTotalVersions = "total-versions"
    	storageRESTSrcVolume     = "source-volume"
    	storageRESTSrcPath       = "source-path"
    	storageRESTDstVolume     = "destination-volume"
    	storageRESTDstPath       = "destination-path"
    	storageRESTOffset        = "offset"
    	storageRESTLength        = "length"
    	storageRESTCount         = "count"
    	storageRESTBitrotAlgo    = "bitrot-algo"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 12 21:00:20 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top