Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 795 for furent (0.43 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        /**
         * Creates an ElevateWord entity based on the form and operation mode.
         *
         * @param form create form containing elevate word data
         * @param username current user's username
         * @param currentTime current timestamp
         * @return optional ElevateWord entity
         */
        public static OptionalEntity<ElevateWord> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             */
            protected boolean prevPage;
            /**
             * The starting record number for the current page of search results.
             */
            protected long startRecordNumber;
            /**
             * The ending record number for the current page of search results.
             */
            protected long endRecordNumber;
            /**
             * The list of page numbers for pagination.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/sub-applications.md

    In diesem Fall wird sie im Pfad `/subapi` gemountet:
    
    {* ../../docs_src/sub_applications/tutorial001.py hl[11,19] *}
    
    ### Es in der automatischen API-Dokumentation betrachten
    
    Führen Sie nun `uvicorn` mit der Hauptanwendung aus. Wenn Ihre Datei `main.py` lautet, wäre das:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. docs/smb3-features/04-directory-leasing-design.md

        }
        
        return files;
    }
    
    @Override
    public boolean exists() throws IOException {
        if (isDirectory() && directoryLeaseManager != null) {
            // Check parent directory cache first
            String parentPath = getParent();
            DirectoryCacheEntry parentCache = directoryLeaseManager.getCacheEntry(parentPath);
            
            if (parentCache != null && parentCache.isComplete()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

         */
        protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
            return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s;
        }
    
        /**
         * Gets the virtual host key from the current request.
         * The key is determined by matching HTTP headers against configured virtual hosts.
         *
         * @return The virtual host key, or empty string if no match found
         */
        public String getVirtualHostKey() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. docs/orchestration/docker-compose/README.md

    ### GNU/Linux and macOS
    
    ```sh
    docker-compose pull
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. docs/es/docs/async.md

    Para ver la diferencia, imagina la siguiente historia sobre hamburguesas:
    
    ### Hamburguesas Concurrentes
    
    Vas con tu crush a conseguir comida rápida, te pones en fila mientras el cajero toma los pedidos de las personas frente a ti. 😍
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration">
    
    Luego es tu turno, haces tu pedido de 2 hamburguesas muy sofisticadas para tu crush y para ti. 🍔🍔
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/DynamicProperties.java

                    }
                }
            }
            lastModified = propertiesFile.lastModified();
        }
    
        /**
         * Returns the current properties, reloading them if the file has been updated.
         *
         * @return The current {@link Properties} instance.
         */
        protected Properties getProperties() {
            if (isUpdated()) {
                load();
            }
            return properties;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
        /**
         * Get lifetime of current user.
         *
         * @return the remaining lifetime in seconds. If the default lifetime is
         *         used, this value have no meaning.
         *
         */
        public int getUserLifeTime() {
            return this.userLifetime;
        }
    
        /**
         * Set lifetime of current user.
         *
         * @param time
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

            // Verify filter interactions: not called for '.' and '..', called for others
            verify(nameFilter, never()).accept(parent, ".");
            verify(nameFilter, never()).accept(parent, "..");
            ArgumentCaptor<String> nameCaptor = ArgumentCaptor.forClass(String.class);
            verify(nameFilter, atLeast(1)).accept(eq(parent), nameCaptor.capture());
            assertTrue(nameCaptor.getAllValues().contains(acceptedName));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top