Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for through (0.18 sec)

  1. cmd/object-handlers.go

    			ObjectV: ObjectV{
    				ObjectName: object,
    				VersionID:  opts.VersionID,
    			},
    		}, *oi, opts, gerr)
    		// Mutations of objects on versioning suspended buckets
    		// affect its null version. Through opts below we select
    		// the null version's remote object to delete if
    		// transitioned.
    		if gerr == nil {
    			os.SetTransitionState(oi.TransitionedObject)
    		}
    		return dsc, nil
    	})
    
    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)
  2. cmd/bucket-replication.go

    		}
    		wg.Add(1)
    		go func(tgt *TargetClient) {
    			defer wg.Done()
    
    			var tgtInfo replicatedTargetInfo
    			if ri.OpType == replication.ObjectReplicationType {
    				// all incoming calls go through optimized path.
    				tgtInfo = ri.replicateObject(ctx, objectAPI, tgt)
    			} else {
    				tgtInfo = ri.replicateAll(ctx, objectAPI, tgt)
    			}
    
    			mu.Lock()
    			rinfos.Targets = append(rinfos.Targets, tgtInfo)
    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)
  3. internal/s3select/csv/testdata/testdata.zip

    40.811252593994141 -73.827133178710938 40.842136383056641 1 9.90 36 1 0.5 0 0 37.5 2 1 166 208 green 0.00 0.0 0.0 54 40 8.05 1312 209.01 1 Manhattan 020901 1020901 E MN09 Morningside Heights 3802 2107 264 2 Bronx 026400 2026400 I BX52 Schuylerville-Throgs Neck-Edgewater Park 3703 3389531 2 2014-03-20 11:13:31 2014-03-20 11:21:11 N 1 -73.956703186035156 40.812595367431641 -73.94439697265625 40.809379577636719 1 1.20 7 0 0.5 0 0 7.5 2 1 166 42 green 0.00 0.0 0.0 54 40 8.05 1312 209.01 1 Manhattan 020901...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    		// parsing it back), use minio-go's add rule function, and
    		// finally convert it back to the server type (again via xml).
    		// This is needed as there is no add-rule function in the server
    		// yet.
    
    		// Though we do not check if the rule already exists, this is
    		// not a problem as we are always using the same replication
    		// rule ID - if the rule already exists, it is just replaced.
    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)
  5. cmd/object-handlers_test.go

    		contentLength int64
    		textData      []byte
    		metaData      map[string]string
    	}{
    		{bucketName, objectName, int64(len(bytesData[0].byteData)), bytesData[0].byteData, make(map[string]string)},
    	}
    	// iterate through the above set of inputs and upload the object.
    	for i, input := range putObjectInputs {
    		// uploading the object.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top