Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for importError (0.81 sec)

  1. cmd/admin-handlers-users.go

    				ok, _, err := globalIAMSys.IsTempUser(u)
    				if err != nil && err != errNoSuchUser {
    					writeErrorResponseJSON(ctx, w, importError(ctx, err, userPolicyMappingsFile, u), r.URL)
    					return
    				}
    				if ok {
    					writeErrorResponseJSON(ctx, w, importError(ctx, errIAMActionNotAllowed, userPolicyMappingsFile, u), r.URL)
    					return
    				}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 90.6K bytes
    - Viewed (0)
  2. cmd/admin-handler-utils.go

    	}
    	return toAPIError(ctx, fmt.Errorf("error exporting %s from %s with: %w", entity, fname, err))
    }
    
    // wraps import error for more context
    func importError(ctx context.Context, err error, fname, entity string) APIError {
    	if entity == "" {
    		return toAPIError(ctx, fmt.Errorf("error importing %s with: %w", fname, err))
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jul 03 07:17:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. docs/ko/docs/virtual-environments.md

    $ deactivate
    
    // prisoner-of-azkaban/.venv 가상 환경을 활성화합니다 🚀
    $ source .venv/bin/activate
    
    // 이제 python을 실행하면, 이 가상 환경에 설치된 sirius 패키지를 찾게 됩니다 ✨
    $ python main.py
    
    못된 짓을 꾸미고 있음을 엄숙히 맹세합니다.🧙
    ImportError는 이제 없습니다. 🐺
    ```
    
    </div>
    
    ## 대안들
    
    이 문서는 여러분이 Python 프로젝트를 시작하고, **그 내부에서** 어떻게 돌아가는지 알려주는 간단한 가이드입니다.
    
    가상 환경, 패키지 의존성(Requirements), 프로젝트를 관리하는 방법에는 이 외에도 다양한 **대안**들이 존재합니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
Back to top