Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for document (0.2 sec)

  1. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

            try {
                osddHelper.asStream();
                fail();
            } catch (final Exception e) {
                assertEquals("Unsupported Open Search Description Document response.", e.getMessage());
            }
        }
    
        public void test_init_osddpath() throws IOException {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsBoostDocumentRuleCB.java

        @Override
        public BoostDocumentRuleDbm asDBMeta() {
            return BoostDocumentRuleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "boost_document_rule";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  3. .cm/javadoc_on_new_files.cm

              color: {{ colors.yellow }}
          - action: add-comment@v1
            args:
              comment: |
                :warning: This PR creates new top-level Java classes, but has no Javadoc present. Please document all top-level classes with Javadoc.
    
    is:
      java: {{ files | extensions | match(term='java') | every }}
      new: {{ source.diff.files | map(attr='original_file') | match(regex=r/^$/) | some }}
    
    colors:
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. cmd/sts-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSTSMalformedPolicyDocument: {
    		Code:           "MalformedPolicyDocument",
    		Description:    "The request was rejected because the policy document was malformed.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSTSInsecureConnection: {
    		Code:           "InsecureConnection",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. fastapi/openapi/docs.py

                }
                window.close();
            }
    
            if (document.readyState !== 'loading') {
                run();
            } else {
                document.addEventListener('DOMContentLoaded', function () {
                    run();
                });
            }
        </script>
        </body>
        </html>
            """
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

          }
    
          if (lastModified != null && cacheResponse.request.url.query == null) {
            // As recommended by the HTTP RFC and implemented in Firefox, the max age of a document
            // should be defaulted to 10% of the document's age at the time it was served. Default
            // expiration dates aren't used for URIs containing a query.
            val servedMillis = servedDate?.time ?: sentRequestMillis
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 12K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ja.properties

    labels.dict_stopwords_button_upload = アップロード
    labels.dict_stopwords_file = Stopwordsファイル
    labels.boost_document_rule_configuration=ドキュメントブースト
    labels.boost_document_rule_title_details=ドキュメントブースト
    labels.boost_document_rule_list_url_expr=条件
    labels.boost_document_rule_url_expr=条件
    labels.boost_document_rule_boost_expr=ブースト値式
    labels.boost_document_rule_sort_order=ソート順
    labels.access_token_configuration=アクセストークン
    labels.access_token_title_details=アクセストークン
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String PERMISSION_HELPER = "permissionHelper";
    
        private static final String QUERY_PARSER = "queryParser";
    
        private static final String DOCUMENT_HELPER = "documentHelper";
    
        private static final String ACTIVITY_HELPER = "activityHelper";
    
        private static final String LDAP_MANAGER = "ldapManager";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final Map<String, Object> document = indexingHelper.getDocument(client, "001", new String[] { "title", "content" });
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsBoostDocumentRule.java

        @Override
        public BoostDocumentRuleDbm asDBMeta() {
            return BoostDocumentRuleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "boost_document_rule";
        }
    
        // ===================================================================================
        //                                                                              Source
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.7K bytes
    - Viewed (0)
Back to top