Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Turkis (0.3 sec)

  1. src/main/resources/fess_indices/fess.json

              ]
            },
            "turkish_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "truncate20_filter",
                "apostrophe",
                "turkish_lowercase",
                "turkish_stop",
                "turkish_keywords",
                "turkish_override",
                "turkish_stemmer"
              ]
            },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  2. src/main/resources/fess_indices/_aws/fess/doc.json

              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
              "match": "*_uk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_cloud/fess/doc.json

              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
              "match": "*_uk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/doc.json

              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
              "match": "*_uk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            // 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
            val delta = servedMillis - lastModified!!.time
            return if (delta > 0L) delta / 10 else 0L
          }
    
          return 0L
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *     return Scheduler.newFixedRateSchedule(0, 1, TimeUnit.SECONDS);
     *   }
     * }
     * }</pre>
     *
     * <p>This class uses the life cycle methods to read in a list of starting URIs and save the set of
     * outstanding URIs when shutting down. Also, it takes advantage of the scheduling functionality to
     * rate limit the number of queries we perform.
     *
     * @author Luke Sandberg
     * @since 11.0
     */
    @GwtIncompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 25.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                crawler.setSessionId(sid);
                sessionIdList.add(sid);
    
                final String pathsStr = fileConfig.getPaths();
                if (StringUtil.isBlank(pathsStr)) {
                    logger.warn("No target uris. Skipped");
                    break;
                }
    
                final int intervalTime =
                        fileConfig.getIntervalTime() != null ? fileConfig.getIntervalTime() : Constants.DEFAULT_INTERVAL_TIME_FOR_FS;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    Articles:
      English:
      - author: Kurtis Pykes - NVIDIA
        link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/
        title: Building a Machine Learning Microservice with FastAPI
      - author: Ravgeet Dhillon - Twilio
        link: https://www.twilio.com/en-us/blog/booking-appointments-twilio-notion-fastapi
        title: Booking Appointments with Twilio, Notion, and FastAPI
      - author: Abhinav Tripathi - Microsoft Blogs
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  9. api/go1.10.txt

    pkg crypto/x509, type Certificate struct, PermittedURIDomains []string
    pkg crypto/x509, type Certificate struct, URIs []*url.URL
    pkg crypto/x509, type CertificateInvalidError struct, Detail string
    pkg crypto/x509, type CertificateRequest struct, URIs []*url.URL
    pkg crypto/x509, type VerifyOptions struct, MaxConstraintComparisions int
    pkg crypto/x509/pkix, method (Name) String() string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/ClassPath.java

        public int hashCode() {
          return home.hashCode();
        }
    
        @Override
        public String toString() {
          return home.toString();
        }
      }
    
      /**
       * Returns the class path URIs specified by the {@code Class-Path} manifest attribute, according
       * to <a
       * href="http://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html#Main_Attributes">JAR
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
Back to top