Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for new400 (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

            try {
                final ActionResponse actionResponse = ssoManager.getResponse(SsoResponseType.METADATA);
                if (actionResponse == null) {
                    throw responseManager.new400("Unsupported request type.");
                }
                return actionResponse;
            } catch (final SsoMessageException e) {
                if (e.getCause() == null) {
                    if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

                // 404
                throw responseManager.new404("Thumbnail for " + form.docId + " is not found.");
            }
    
            final File thumbnailFile = thumbnailManager.getThumbnailFile(doc);
            if (thumbnailFile == null) {
                if (fessConfig.isThumbnailEnabled()) {
                    thumbnailManager.offer(doc);
                }
                // 404
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/OsddHelper.java

         *
         * @return the stream response
         */
        public StreamResponse asStream() {
            if (osddFile == null) {
                throw ComponentUtil.getResponseManager().new404("Unsupported Open Search Description Document response.");
            }
    
            return new StreamResponse(osddFile.getName()).contentType(contentType + "; charset=" + encoding).stream(out -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  4. tests/hooks_test.go

    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	// Code changed, price should changed
    	DB.Model(&product).Select("Name", "Code", "Price").Updates(Product3{Name: "Product New4", Code: ""})
    	if product.Name != "Product New4" || product.Price != 320 || product.Code != "" {
    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	DB.Model(&product).UpdateColumns(Product3{Code: "L1215"})
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Jun 17 03:59:06 GMT 2024
    - 16.7K bytes
    - Click Count (0)
  5. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ua52e\u0000\u20005\u0000\u4000\u05e2\u0000\u4000\u0b9a\u0000\u4000\u1170\u0000\u4000\u1395\u0000\u4000\ue3e3\u0000\u8000\ue01d\u0000\u8000\ue3e7\u0000\u8000\ue3ec\u0000\u8000\ue3f0\u0000\u8000\ue037\u0000\u8000\ue3f4\u0000\u8000\ue3fb\u0000\u8000\ue400\u0000\u8000\ue404\u0000\u8000\ue406\u0000\u4000\ue409\u0000\u4000\ue40d\u0000\u4000\ue037\u0000\u4000\ue410\u0000\u4000\ue413\u0000\u4000\ue417\u0000\u4000\ue41e\u0000\u4000\ue423\u0000\u4000\ue428\u0000\u4000\ue42c\u0000\u4000\ue431\u0000\u4000\u...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
Back to Top