Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 570 for game (0.03 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertEquals("30s", fessConfig.getCrawlerHotthreadTimeout());
            assertEquals("cpu", fessConfig.getCrawlerHotthreadType());
        }
    
        // Test field name configurations
        public void test_fieldNameConfigurations() {
            // Test all field name configurations are properly returned
            assertNotNull(fessConfig.getIndexFieldFavoriteCount());
            assertNotNull(fessConfig.getIndexFieldClickCount());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java

        @Override
        public String toStringWithRelation() { // #pending
            return toString();
        }
    
        @Override
        public String buildDisplayString(String name, boolean column, boolean relation) { // #pending
            return toString();
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

            // if we know the size and it fits in an int
            if (size.isPresent() && size.get().longValue() == size.get().intValue()) {
              // otherwise try to presize a StringBuilder
              // it is kind of lame that we need to construct a decoder to access this value.
              // if this is a concern we could add special cases for some known charsets (like utf8)
              // or we could avoid inputstreamreader and use the decoder api directly
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. docs/es/docs/how-to/separate-openapi-schemas.md

    * para **salida** será **requerido** (y posiblemente `None`, o en términos de JSON, `null`)
    
    ### Modelo para Salida en la Documentación
    
    También puedes revisar el modelo de salida en la documentación, **ambos** `name` y `description` están marcados como **requeridos** con un **asterisco rojo**:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image03.png">
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/Config.java

     * the <code>load</code> method should be called with the name of a
     * <code>Properties</code> file (or <code>null</code> indicating no
     * file) to initialize the <code>Config</code>. The <code>System</code>
     * properties will then populate the <code>Config</code> as well potentially
     * overwriting properties from the file. Thus properties provided on the
     * commandline with the <code>-Dproperty.name=value</code> VM parameter
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Predicates.java

       * clazz.isAssignableFrom(x)}, but note that lambdas do not have human-readable {@link
       * #toString()} representations and are not serializable.
       *
       * @since 20.0 (since 10.0 under the incorrect name {@code assignableFrom})
       */
      @J2ktIncompatible
      @GwtIncompatible // Class.isAssignableFrom
      public static Predicate<Class<?>> subtypeOf(Class<?> clazz) {
        return new SubtypeOfPredicate(clazz);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

     *
     */
    public class AdminSereqAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminSereqAction() {
            super();
        }
    
        /** Role name for admin search request operations */
        public static final String ROLE = "admin-sereq";
    
        private static final Logger logger = LogManager.getLogger(AdminSereqAction.class);
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

            });
            return asJson(new ApiBulkResponse().items(Arrays.stream(response.getItems()).map(item -> {
                final Map<String, Object> itemMap = new HashMap<>();
                itemMap.put("result", item.status().name());
                if (item.isFailed()) {
                    itemMap.put("message", item.getFailureMessage());
                } else {
                    itemMap.put("id", item.getId());
                }
                return itemMap;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/UniAddressTest.java

            assertThrows(UnknownHostException.class, () -> UniAddress.getAllByName(null, false),
                    "getAllByName should throw UnknownHostException for null name");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbRenewableCredentialsTest.java

                    Arguments.of("returns null", (Supplier<SmbRenewableCredentials>) NullRenewingCreds::new, false, false));
        }
    
        @ParameterizedTest(name = "renew() {0}")
        @MethodSource("implementations")
        @DisplayName("renew() behaviors across implementations")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top