Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for reqheader (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java

            });
    
            return asJson(new ApiUpdateResponse().id(reqHeader.getId()).created(true).status(Status.OK).result());
        }
    
        // POST /api/admin/reqheader/setting
        @Execute
        public JsonResponse<ApiResult> post$setting(final EditBody body) {
            validateApi(body, messages -> {});
            body.crudMode = CrudMode.EDIT;
            final RequestHeader reqHeader = getRequestHeader(body).map(entity -> {
                try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. internal/logger/message/audit/entry.go

    	}
    	entry.ReqQuery = reqQuery
    
    	reqHeader := make(map[string]string, len(r.Header))
    	for k, v := range r.Header {
    		reqHeader[k] = strings.Join(v, ",")
    	}
    	entry.ReqHeader = reqHeader
    
    	wh := w.Header()
    	entry.RequestID = wh.Get(xhttp.AmzRequestID)
    	respHeader := make(map[string]string, len(wh))
    	for k, v := range wh {
    		respHeader[k] = strings.Join(v, ",")
    	}
    	entry.RespHeader = respHeader
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/CreateBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.reqheader;
    
    import org.codelibs.fess.app.web.admin.reqheader.CreateForm;
    
    public class CreateBody extends CreateForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 787 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.reqheader;
    
    import org.codelibs.fess.app.web.admin.reqheader.EditForm;
    
    public class EditBody extends EditForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 781 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/SearchBody.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.reqheader;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
        public String id;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 811 bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    			serveETag:        `"foo"`,    // Last-Modified sent only when no ETag
    			modtime:          htmlModTime,
    			reqHeader: map[string]string{
    				"If-Modified-Since": htmlModTime.UTC().Format(TimeFormat),
    			},
    			wantStatus: 304,
    		},
    		"not_modified_etag": {
    			file:      "testdata/style.css",
    			serveETag: `"foo"`,
    			reqHeader: map[string]string{
    				"If-None-Match": `"foo"`,
    			},
    			wantStatus: 304,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader.jsp

                                                        <tr
                                                                data-href="${contextPath}/admin/reqheader/details/4/${f:u(data.id)}">
                                                            <td>${f:h(data.name)}</td>
                                                            <td>${f:h(data.webConfig.name)}</td>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/reqheader/admin_reqheader.jsp */
        HtmlNext path_AdminReqheader_AdminReqheaderJsp = new HtmlNext("/admin/reqheader/admin_reqheader.jsp");
    
        /** The path of the HTML: /admin/reqheader/admin_reqheader_details.jsp */
        HtmlNext path_AdminReqheader_AdminReqheaderDetailsJsp = new HtmlNext("/admin/reqheader/admin_reqheader_details.jsp");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.reqheader;
    
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.reqheader;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author Keiichi Watanabe
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top