Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for sinulle (0.2 sec)

  1. cmd/data-scanner.go

    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    	dataScannerForceCompactAtFolders = 1_000_000                        // Compact when this many subfolders in a single folder (even top level).
    	dataScannerStartDelay            = 1 * time.Minute                  // Time to wait on startup and between cycles.
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    			return err
    		}
    		return saveConfig(ctx, api, getJobReportPath(job), buf)
    	}
    	ri.mu.Unlock()
    	return nil
    }
    
    // Note: to be used only with batch jobs that affect multiple versions through
    // a single action. e.g batch-expire has an option to expire all versions of an
    // object which matches the given filters.
    func (ri *batchJobInfo) trackMultipleObjectVersions(bucket string, info ObjectInfo, success bool) {
    	if success {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminConfigLDAPNonDefaultConfigName: {
    		Code:           "XMinioAdminConfigLDAPNonDefaultConfigName",
    		Description:    "Only a single LDAP configuration is supported - config name must be empty or `_`",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminConfigLDAPValidation: {
    		Code:           "XMinioAdminConfigLDAPValidation",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (7)
  4. docs/en/docs/release-notes.md

    Now, instead of using independent `startup` and `shutdown` events, you can define that logic in a single function with `yield` decorated with `@asynccontextmanager` (an async context manager).
    
    For example:
    
    ```Python
    from contextlib import asynccontextmanager
    
    from fastapi import FastAPI
    
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top