Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dstRecords (0.09 sec)

  1. cmd/object-multipart-handlers.go

    		var dstRecords []dns.SrvRecord
    		dstRecords, err = globalDNSConfig.Get(dstBucket)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Send PutObject request to appropriate instance (in federated deployment)
    		core, rerr := getRemoteInstanceClient(r, getHostFromSrv(dstRecords))
    		if rerr != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    	var os *objSweeper
    	if remoteCallRequired {
    		var dstRecords []dns.SrvRecord
    		dstRecords, err = globalDNSConfig.Get(dstBucket)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Send PutObject request to appropriate instance (in federated deployment)
    		core, rerr := getRemoteInstanceClient(r, getHostFromSrv(dstRecords))
    		if rerr != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    	// map from location to the value it contains
    	contents map[Location]contentRecord
    
    	// desired destination locations
    	destinations []dstRecord
    	extra        []dstRecord
    
    	usedRegs              regMask // registers currently holding something
    	uniqueRegs            regMask // registers holding the only copy of a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top