Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isStatic (0.23 sec)

  1. cmd/object-handlers.go

    	holdPerms := isPutActionAllowed(ctx, getRequestAuthType(r), bucket, object, r, policy.PutObjectLegalHoldAction)
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// These are static for all objects extracted.
    	reqParams := extractReqParams(r)
    	respElements := map[string]string{
    		"requestId": w.Header().Get(xhttp.AmzRequestID),
    		"nodeId":    w.Header().Get(xhttp.AmzRequestHostID),
    	}
    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

    					atomic.AddInt32(opTracker, -1)
    				}
    			default:
    				bugLogIf(p.ctx, fmt.Errorf("unknown replication type: %T", oi), "unknown-replicate-type")
    			}
    		}
    	}
    }
    
    // AddLargeWorkers adds a static number of workers to handle large uploads
    func (p *ReplicationPool) AddLargeWorkers() {
    	for i := 0; i < LargeWorkerCount; i++ {
    		p.lrgworkers = append(p.lrgworkers, make(chan ReplicationWorkerOperation, 100000))
    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. cmd/site-replication.go

    				},
    				UpdatedAt: mp.UpdatedAt,
    			})
    			return err == nil
    		})
    		if err != nil {
    			return errSRIAMError(err)
    		}
    	}
    
    	// Service accounts are the static accounts that should be synced with
    	// valid claims.
    	{
    		serviceAccounts := make(map[string]UserIdentity)
    		err := globalIAMSys.store.loadUsers(ctx, svcUser, serviceAccounts)
    		if err != nil {
    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)
Back to top