Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 272 for Modification (0.09 sec)

  1. internal/config/lambda/parse.go

    var ErrTargetsOffline = errors.New("one or more targets are offline. Please use `mc admin info --json` to check the offline targets")
    
    // TestSubSysLambdaTargets - tests notification targets of given subsystem
    func TestSubSysLambdaTargets(ctx context.Context, cfg config.Config, subSys string, transport *http.Transport) error {
    	if err := checkValidLambdaKeysForSubSys(subSys, cfg[subSys]); err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/style.css

    	margin-top: 1.5em;
    }
    
    .top20 {
    	margin-top: 2.0em;
    }
    
    .top25 {
    	margin-top: 2.5em;
    }
    
    .top30 {
    	margin-top: 3.0em;
    }
    
    .container .text-muted {
    	margin: 20px 0;
    }
    
    .notification {
    	text-align: center;
    }
    
    ul.has-error {
    	color: #dd4b39 !important;
    	list-style-type: none;
    	padding: 0;
    }
    
    .form-group .has-error + .form-control {
    	border-color: #dd4b39 !important;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/login/index.jsp

    		<div class="login-logo">
    			<la:link href="/">
    				<img src="${fe:url('/images/logo-top.png')}"
    					alt="<la:message key="labels.header_brand_name" />" />
    			</la:link>
    		</div>
    		<div class="notification">${notification}</div>
    		<div class="card">
    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    					<la:message key="labels.login" />
    				</p>
    				<%-- Message --%>
    				<div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_background_tasks/test_tutorial002_an.py

    client = TestClient(app)
    
    
    def test():
        log = Path("log.txt")
        if log.is_file():
            os.remove(log)  # pragma: no cover
        response = client.post("/send-notification/******@****.***?q=some-query")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Message sent"}
        with open("./log.txt") as f:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 571 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String LDAP_MEMBEROF_ATTRIBUTE = "ldap.memberof.attribute";
    
        public static final String NOTIFICATION_LOGIN = "notification.login";
    
        public static final String NOTIFICATION_SEARCH_TOP = "notification.search.top";
    
        public static final String NOTIFICATION_ADVANCE_SEARCH = "notification.advance.search";
    
        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. docs_src/background_tasks/tutorial002_py310.py

    def get_query(background_tasks: BackgroundTasks, q: str | None = None):
        if q:
            message = f"found query: {q}\n"
            background_tasks.add_task(write_log, message)
        return q
    
    
    @app.post("/send-notification/{email}")
    async def send_notification(
        email: str, background_tasks: BackgroundTasks, q: str = Depends(get_query)
    ):
        message = f"message to {email}\n"
        background_tasks.add_task(write_log, message)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 643 bytes
    - Viewed (0)
  7. docs_src/background_tasks/tutorial002_an_py310.py

    def get_query(background_tasks: BackgroundTasks, q: str | None = None):
        if q:
            message = f"found query: {q}\n"
            background_tasks.add_task(write_log, message)
        return q
    
    
    @app.post("/send-notification/{email}")
    async def send_notification(
        email: str, background_tasks: BackgroundTasks, q: Annotated[str, Depends(get_query)]
    ):
        message = f"message to {email}\n"
        background_tasks.add_task(write_log, message)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 683 bytes
    - Viewed (0)
  8. internal/logger/logonce.go

    	l := &logOnceType{IDMap: make(map[string]onceErr)}
    	go l.cleanupRoutine()
    	return l
    }
    
    var logOnce = newLogOnceType()
    
    // LogOnceIf - Logs notification errors - once per error.
    // id is a unique identifier for related log messages, refer to cmd/notification.go
    // on how it is used.
    func LogOnceIf(ctx context.Context, subsystem string, err error, id string, errKind ...interface{}) {
    	if logIgnoreError(err) {
    		return
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_background_tasks/test_tutorial002_py310.py

        from docs_src.background_tasks.tutorial002_py310 import app
    
        client = TestClient(app)
        log = Path("log.txt")
        if log.is_file():
            os.remove(log)  # pragma: no cover
        response = client.post("/send-notification/******@****.***?q=some-query")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Message sent"}
        with open("./log.txt") as f:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 628 bytes
    - Viewed (0)
  10. gradle/wrapper/gradle-wrapper.jar

    the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that...
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
Back to top