Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for Turing (0.22 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        public NbtAddress getNbtByName ( String host ) throws UnknownHostException {
            return getNbtByName(host, 0x00, null);
        }
    
    
        @Override
        public NbtAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException {
            return getNbtByName(host, type, scope, null);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                thread.start();
            }
        }
        void tryClose() {
            synchronized( LOCK ) {
    
                /* Yes, there is the potential to drop packets
                 * because we might close the socket during a
                 * request. However the chances are slim and the
                 * retry code should ensure the overall request
                 * is serviced. The alternative complicates things
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        protected Map<String, String> handlerParameterMap;
    
        protected Map<String, String> handlerScriptMap;
    
        protected CrawlerClientFactory crawlerClientFactory = null;
    
        protected Map<ConfigName, Map<String, String>> configParameterMap;
    
        public DataConfig() {
            setBoost(1.0f);
        }
    
        @Override
        public String getDocumentBoost() {
            return getBoost().toString();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            // from config
            final String scriptType = crawlingConfig.getScriptType();
            final Map<String, String> scriptConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.SCRIPT);
            final Map<String, String> metaConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.META);
            for (final Map.Entry<String, String> entry : metaConfigMap.entrySet()) {
                final String key = entry.getKey();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

        }
    
        protected static class LabelTypeItem {
            private String label;
    
            private String value;
    
            private String[] permissions;
    
            private String virtualHost;
    
            private Locale locale;
    
            public String getLabel() {
                return label;
            }
    
            public void setLabel(final String label) {
                this.label = label;
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String PLUGIN_HELPER = "pluginHelper";
    
        private static final String LANGUAGE_HELPER = "languageHelper";
    
        private static final String CURL_HELPER = "curlHelper";
    
        private static final String QUERY_STRING_BUILDER = "queryStringBuilder";
    
        private static final String ACCESS_TOKEN_HELPER = "accessTokenHelper";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @return 結果の文字列
         */
        public static final String rtrim(final String text) {
            return rtrim(text, null);
        }
    
        /**
         * 右側の指定した文字列を削ります。
         *
         * @param text
         *            テキスト
         * @param trimText
         *            削る文字列
         * @return 結果の文字列
         */
        public static final String rtrim(final String text, String trimText) {
            if (text == null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceUtil.java

         * @return リソース
         * @see #getResourcePath(String, String)
         */
        public static URL getResourceNoException(final String path, final String extension, final ClassLoader loader) {
            assertArgumentNotNull("loader", loader);
    
            if (path == null || loader == null) {
                return null;
            }
            final String p = getResourcePath(path, extension);
            return loader.getResource(p);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/fe.tld

      <function>
        <description>
          Returns a string resulting from replacing in an input string all occurrences
          of a "before" string into an "after" substring.
        </description>
        <name>replace</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String replace(java.lang.Object, java.lang.String, java.lang.String)</function-signature>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

        protected transient volatile Map<ConfigName, Map<String, String>> configParameterMap;
    
        protected CrawlerClientFactory crawlerClientFactory = null;
    
        public WebConfig() {
            setBoost(1.0f);
        }
    
        @Override
        public String getDocumentBoost() {
            return getBoost().toString();
        }
    
        @Override
        public String getIndexingTarget(final String input) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top