Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,300 for coll (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/RenderDataUtil.java

            } else {
                if ((value instanceof final Collection<?> coll) && !coll.isEmpty()) {
                    // care performance for List that the most frequent pattern
                    final Object first = coll instanceof List<?> ? ((List<?>) coll).get(0) : coll.iterator().next();
                    if (first instanceof Entity) {
                        data.register(key, coll.stream().map(BeanUtil::copyBeanToNewMap).collect(Collectors.toList()));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess.json

            },
            "italian_elision": {
              "type":         "elision",
              "articles": [
                    "c", "l", "all", "dall", "dell",
                    "nell", "sull", "coll", "pell",
                    "gl", "agl", "dagl", "degl", "negl",
                    "sugl", "un", "m", "t", "s", "v", "d"
              ]
            },
            "italian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  3. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "language":   "indonesian"
          },
          "italian_elision": {
            "type":         "elision",
            "articles": [
              "c", "l", "all", "dall", "dell",
              "nell", "sull", "coll", "pell",
              "gl", "agl", "dagl", "degl", "negl",
              "sugl", "un", "m", "t", "s", "v", "d"
            ]
          },
          "italian_stop": {
            "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "language":   "indonesian"
          },
          "italian_elision": {
            "type":         "elision",
            "articles": [
              "c", "l", "all", "dall", "dell",
              "nell", "sull", "coll", "pell",
              "gl", "agl", "dagl", "degl", "negl",
              "sugl", "un", "m", "t", "s", "v", "d"
            ]
          },
          "italian_stop": {
            "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/suggest_analyzer.json

            "language":   "indonesian"
          },
          "italian_elision": {
            "type":         "elision",
            "articles": [
              "c", "l", "all", "dall", "dell",
              "nell", "sull", "coll", "pell",
              "gl", "agl", "dagl", "degl", "negl",
              "sugl", "un", "m", "t", "s", "v", "d"
            ]
          },
          "italian_stop": {
            "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Call.kt

     */
    package okhttp3
    
    import okio.IOException
    import okio.Timeout
    
    /**
     * A call is a request that has been prepared for execution. A call can be canceled. As this object
     * represents a single request/response pair (stream), it cannot be executed twice.
     */
    interface Call : Cloneable {
      /** Returns the original request that initiated this call. */
      fun request(): Request
    
      /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_aws/fess.json

                    "nell", "sull", "coll", "pell",
                    "gl", "agl", "dagl", "degl", "negl",
                    "sugl", "un", "m", "t", "s", "v", "d"
              ]
            },
            "italian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

        byte[] col1 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80};
        byte[] col2 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81};
        byte[] col3 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0xff};
    
        ImmutableSet<HashCode> hashCodes =
            ImmutableSet.of(
                SIP_WITH_KEY.hashBytes(col1),
                SIP_WITH_KEY.hashBytes(col2),
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sun May 05 18:02:35 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

        byte[] col1 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80};
        byte[] col2 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81};
        byte[] col3 = new byte[] {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0xff};
    
        ImmutableSet<HashCode> hashCodes =
            ImmutableSet.of(
                SIP_WITH_KEY.hashBytes(col1),
                SIP_WITH_KEY.hashBytes(col2),
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Sun May 05 18:02:35 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

                    "nell", "sull", "coll", "pell",
                    "gl", "agl", "dagl", "degl", "negl",
                    "sugl", "un", "m", "t", "s", "v", "d"
              ]
            },
            "italian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
Back to top