Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for created (0.2 sec)

  1. cmd/server_test.go

    // The following is the test flow.
    // 1. Create bucket.
    // 2. Insert Object.
    // 3. Use "X-Amz-Copy-Source" header to copy the previously created object.
    // 4. Validate the content of copied object.
    func (s *TestSuiteCommon) TestCopyObject(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// HTTP request to create the bucket.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		w.Header()[strings.ToLower(xhttp.AmzCopySourceVersionID)] = []string{srcOpts.VersionID}
    	}
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    
    	// Notify object created event.
    	sendEvent(eventArgs{
    		EventName:    event.ObjectCreatedCopy,
    		BucketName:   dstBucket,
    		Object:       objInfo,
    		ReqParams:    extractReqParams(r),
    		RespElements: extractRespElements(w),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				return nil
    			}
    		}
    		opts := newServiceAccountOpts{
    			accessKey:     change.Create.AccessKey,
    			secretKey:     change.Create.SecretKey,
    			sessionPolicy: sp,
    			claims:        change.Create.Claims,
    			name:          change.Create.Name,
    			description:   change.Create.Description,
    			expiration:    change.Create.Expiration,
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  4. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.Name, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "Name")
    		return
    	}
    	z.Created, err = dc.ReadTime()
    	if err != nil {
    		err = msgp.WrapError(err, "Created")
    		return
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z VolInfo) EncodeMsg(en *msgp.Writer) (err error) {
    	// array header, size 2
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		labels = append(labels, l)
    		values = append(values, v)
    	}
    	return
    }
    
    // newMinioCollectorNode describes the collector
    // and returns reference of minioCollector for version 2
    // It creates the Prometheus Description which is used
    // to define Metric and  help string
    func newMinioCollectorNode(metricsGroups []*MetricsGroupV2) *minioNodeCollector {
    	return &minioNodeCollector{
    		metricsGroups: metricsGroups,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		return
    	}
    	// mark resync status as resync started
    	if !heal {
    		s.markStatus(ResyncStarted, opts, objectAPI)
    	}
    
    	// Walk through all object versions - Walk() is always in ascending order needed to ensure
    	// delete marker replicated to target after object version is first created.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  7. cmd/object-handlers_test.go

    		if err != nil {
    			// Failed to create NewMultipartUpload, abort.
    			t.Fatalf("MinIO %s : <ERROR>  %s", instanceType, err)
    		}
    
    		uploadIDs = append(uploadIDs, res.UploadID)
    	}
    
    	// Parts with size greater than 5 MiB.
    	// Generating a 6 MiB byte array.
    	validPart := bytes.Repeat([]byte("abcdef"), 1*humanize.MiByte)
    	validPartMD5 := getMD5Hash(validPart)
    	// Create multipart parts.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    			mapIfNotPresent(hostAnonymizer, schemePfx+currentHostPortPath, newHostPortPath)
    		}
    
    		// Full url
    		hostAnonymizer[currentURL] = schemePfx + newHostPortPath
    	}
    }
    
    // createHostAnonymizer - Creates a map of various strings to corresponding anonymized names
    func createHostAnonymizer() map[string]string {
    	if !globalIsDistErasure {
    		return createHostAnonymizerForFSMode()
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top