Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 401 for estive (0.21 sec)

  1. src/test/java/jcifs/util/ResourceManagerTest.java

            String resourceId = resourceManager.registerResource(resource);
    
            resourceManager.unregisterResource(resourceId);
    
            // After unregistration, the resource should be removed from active tracking
            Map<String, Object> stats = resourceManager.getStatistics();
            assertNotNull(stats);
        }
    
        @Test
        @DisplayName("Test force cleanup")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/simple-oauth2.md

    We want to get the `current_user` *only* if this user is active.
    
    So, we create an additional dependency `get_current_active_user` that in turn uses `get_current_user` as a dependency.
    
    Both of these dependencies will just return an HTTP error if the user doesn't exist, or if is inactive.
    
    So, in our endpoint, we will only get a user if the user exists, was correctly authenticated, and is active:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/https.md

    No(s) servidor(es) DNS, você configuraria um registro (`registro A`) para apontar **seu domínio** para o **endereço IP público do seu servidor**.
    
    Você provavelmente fará isso apenas uma vez, na primeira vez em que tudo estiver sendo configurado.
    
    /// tip | Dica
    
    Essa parte do Nome do Domínio se dá muito antes do HTTPS, mas como tudo depende do domínio e endereço IP público, vale a pena mencioná-la aqui.
    
    ///
    
    ### DNS
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. docs/pt/docs/python-types.md

    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial013.py!}
    ```
    
    ////
    
    O Python em si não faz nada com este `Annotated`. E para editores e outras ferramentas, o tipo ainda é `str`.
    
    Mas você pode utilizar este espaço dentro do `Annotated` para fornecer ao **FastAPI** metadata adicional sobre como você deseja que a sua aplicação se comporte.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 10:32:53 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/index.jsp

    									<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    								</li>
    							</c:if>
    							<c:if test="${developmentMode}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    									title="<la:message key="labels.development_mode_warning" />"
    								><a class="nav-link active" href="${installationLink}" target="_olh"><em
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 7K bytes
    - Viewed (1)
  6. src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java

         *
         * @return total released regions
         */
        public long getTotalReleased() {
            return totalReleased.get();
        }
    
        /**
         * Get number of currently active regions
         *
         * @return active regions (allocated - released)
         */
        public long getActiveRegions() {
            return totalAllocated.get() - totalReleased.get();
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/websockets.md

    And to communicate using WebSockets with your backend you would probably use your frontend's utilities.
    
    Or you might have a native mobile application that communicates with your WebSocket backend directly, in native code.
    
    Or you might have any other way to communicate with the WebSocket endpoint.
    
    ---
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                            classes.push('active', 'start-date');
    
                        //highlight the currently selected end date
                        if (this.endDate != null && calendar[row][col].format('YYYY-MM-DD') == this.endDate.format('YYYY-MM-DD'))
                            classes.push('active', 'end-date');
    
                        //highlight dates in-between the selected dates
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public int initializingShards;
            /** Number of relocating shards */
            public int relocatingShards;
            /** Percentage of active shards */
            public double activeShardsPercent;
            /** Number of active shards */
            public int activeShards;
            /** Number of active primary shards */
            public int activePrimaryShards;
            /** Number of data nodes */
            public int numberOfDataNodes;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

                            </h1>
                        </div>
                        <div class="col-sm-6">
                            <ol class="breadcrumb float-sm-right">
                                <li class="breadcrumb-item active"><la:link href="/admin/wizard/">
                                    <la:message key="labels.wizard_start_title"/>
                                </la:link></li>
                            </ol>
                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top