Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for dies (0.01 sec)

  1. src/main/resources/fess_label_de.properties

    labels.excludedDocPaths=Ausgeschlossene Pfade für die Suche
    labels.excludedDocUrls=Ausgeschlossene URLs für die Suche
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Eingeschlossene Pfade für das Crawling
    labels.includedUrls=Eingeschlossene URLs für das Crawling
    labels.includedDocPaths=Eingeschlossene Pfade für die Suche
    labels.includedDocUrls=Eingeschlossene URLs für die Suche
    labels.maxAccessCount=Maximale Zugriffsanzahl
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                public long purge(long expiry) {
                    baseDir = tempDir;
                    // Count expired files
                    int count = 0;
                    File[] dirs = baseDir.listFiles();
                    if (dirs != null) {
                        for (File dir : dirs) {
                            if (dir.isDirectory() && dir.getName().startsWith("_")) {
                                count++;
                            }
                        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The value is, e.g. false <br>
         * comment: Does it enable the Framework internal debug? (true only when emergency)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getFrameworkDebug();
    
        /**
         * Is the property for the key 'framework.debug' true? <br>
         * The value is, e.g. false <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_de.properties

    constraints.Length.message = Die Länge von {item} muss zwischen {min} und {max} liegen.
    constraints.LuhnCheck.message = Die Luhn-Modulo-11-Prüfsumme von {value} ist falsch.
    constraints.Mod10Check.message = Die Modulo-10-Prüfsumme von {value} ist falsch.
    constraints.Mod11Check.message = Die Modulo-11-Prüfsumme von {value} ist falsch.
    constraints.ModCheck.message = Die {modType}-Prüfsumme von {value} ist falsch.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                fail("Should throw ThemeException");
            } catch (Exception e) {
                // Should throw ThemeException or other exception related to file not found
                assertTrue(e.getMessage().contains("does not exist") || e instanceof ThemeException);
            }
        }
    
        public void test_closeQuietly_nonExistentDirectory() {
            Path nonExistentDir = tempDir.resolve("non-existent");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_message.properties

    constraints.NotNull.message = {item} is required.
    constraints.Null.message = {item} must be null.
    constraints.Past.message = {item} must be a past value.
    constraints.Pattern.message = {item} does not match "{regexp}".
    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    constraints.NotNull.message = {item} is required.
    constraints.Null.message = {item} must be null.
    constraints.Past.message = {item} must be a past value.
    constraints.Pattern.message = {item} does not match "{regexp}".
    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Monitor.java

        } finally {
          if (!satisfied) {
            lock.unlock();
          }
        }
      }
    
      /**
       * Enters this monitor if it is possible to do so immediately and the guard is satisfied. Does not
       * block acquiring the lock and does not wait for the guard to be satisfied.
       *
       * <p><b>Note:</b> This method disregards the fairness setting of this monitor.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

      @Override
      public void setUp() throws Exception {
        super.setUp();
    
        empty = new Target(emptyCollection(), "empty");
        /*
         * We test that nullSingleton.retainAll(disjointList) does NOT throw a
         * NullPointerException when disjointList does not, so we can't use
         * MinimalCollection, which throws NullPointerException on calls to
         * contains(null).
         */
        List<E> disjointList = asList(e3(), e4());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder().maximumSize(16);
        assertThrows(IllegalStateException.class, () -> builder.maximumWeight(16));
      }
    
      @GwtIncompatible // digs into internals of the non-GWT implementation
      public void testMaximumSize_largerThanInt() {
        CacheBuilder<Object, Object> builder =
            CacheBuilder.newBuilder().initialCapacity(512).maximumSize(Long.MAX_VALUE);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
Back to top