Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Reference (0.2 sec)

  1. LICENSE

    this License.  You must supply a copy of this License.  If the work
    during execution displays copyright notices, you must include the
    copyright notice for the Library among them, as well as a reference
    directing the user to the copy of this License.  Also, you must do one
    of these things:
    
        a) Accompany the work with the complete corresponding
        machine-readable source code for the Library including whatever
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

            return disconnect(hard, true);
        }
    
    
        /**
         * Disconnect the transport
         * 
         * @param hard
         * @param inUse
         *            whether the caller is holding a usage reference on the transport
         * @return whether conenction was in use
         * @throws IOException
         */
        public synchronized boolean disconnect ( boolean hard, boolean inUse ) throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    ).each(function(){if(this.inputReferer===b[0])return f=a(this),!1}),f?c?h(f):f.remove():""!==c&&(e=a('<div class="'+d.errorMessageClass+' alert"></div>'),h(e),e[0].inputReferer=b[0],g.prepend(e))};if(f)a.formUtils.warn("Using deprecated element reference "+f.id),g=a(f),i();else if("function"==typeof d.inlineErrorMessageCallback){if(g=d.inlineErrorMessageCallback(b,c,d),!g)return;i()}else{var j=this.getParentContainer(b);e=j.find("."+d.errorMessageClass+".help-block"),0===e.length&&(e=a("<span></...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                if (session != null) {
                    return session.getId();
                }
                final String preference = r.getParameter("preference");
                if (preference != null) {
                    return Integer.toString(preference.hashCode());
                }
                final Object accessType = r.getAttribute(Constants.SEARCH_LOG_ACCESS_TYPE);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                    searchRequestBuilder -> SearchConditionBuilder
                            .builder(searchRequestBuilder.setPreference(Constants.SEARCH_PREFERENCE_LOCAL))
                            .searchRequestType(SearchRequestType.ADMIN_SEARCH).size(keyMatch.getMaxSize()).query(keyMatch.getQuery())
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. _query */
        String QUERY_JSON_DEFAULT_PREFERENCE = "query.json.default.preference";
    
        /** The key of the configuration. e.g. _query */
        String QUERY_GSA_DEFAULT_PREFERENCE = "query.gsa.default.preference";
    
        /** The key of the configuration. e.g. ar=ar<br>
         * bg=bg<br>
         * bn=bn<br>
         * ca=ca<br>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  7. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                queryRequestBuilder.addAggregation(termsBuilder);
                queryRequestBuilder.setPreference(Constants.SEARCH_PREFERENCE_LOCAL);
                return true;
            }, (queryRequestBuilder, execTime, searchResponse) -> {
                final List<Map<String, String>> sessionIdList = new ArrayList<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  8. src/main/config/openapi/openapi-user.yaml

            - name: lang
              in: query
              description: Language
              required: false
              schema:
                type: string
                example: en
            - name: preference
              in: query
              description: String to specify a shard for searching
              required: false
              schema:
                type: string
                example: abc
            - name: callback
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String REQUEST_LANGUAGES = "requestLanguages";
    
        public static final String REQUEST_PAGE_SIZE = "requestPageSize";
    
        public static final String SEARCH_PREFERENCE_LOCAL = "_local";
    
        public static final String GSA_API_VERSION = "3.2";
    
        public static final String PERMISSIONS = "permissions";
    
        public static final String QUERIES = "queries";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            SearchResponse response = option.apply(client.prepareSearch(index).setScroll(scrollForUpdate).setSize(sizeForUpdate)
                    .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout());
    
            int count = 0;
            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top