Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for seats (0.56 sec)

  1. src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java

        void testInitialization() {
            assertNotNull(multiChannelManager);
            MultiChannelManager.ChannelStatistics stats = multiChannelManager.getStatistics();
            assertEquals(0, stats.getActiveSessions());
            assertEquals(0, stats.getTotalChannels());
        }
    
        @Test
        @DisplayName("createChannelTransport should fail with null addresses")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/CriticalPerformanceTest.java

            assertEquals(threadCount * operationsPerThread, releases.get());
    
            // Verify cache statistics
            String stats = BufferCache.getCacheStatistics();
            assertNotNull(stats, "Cache statistics should be available");
            System.out.println("Buffer Cache Stats: " + stats);
        }
    
        /**
         * Test encryption context performance without synchronization bottlenecks
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            }
    
            /**
             * Sets the search query string.
             *
             * @param query the query string
             * @return this builder for method chaining
             */
            public SearchConditionBuilder query(final String query) {
                this.query = query;
                return this;
            }
    
            /**
             * Sets the search request type.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         *
         * @return offset to next compound command
         */
        public final int getNextCommandOffset() {
            return this.nextCommand;
        }
    
        /**
         * Sets the read size for this message.
         *
         * @param readSize
         *            the readSize to set
         */
        public void setReadSize(final int readSize) {
            this.readSize = readSize;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** A set of names of threads that are currently waiting. */
        protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>());
    
        /**
         * Initializes the SystemHelper.
         * This method sets up system properties, caches, and other initial configurations.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  6. pom.xml

    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>mapper-extras-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>aggs-matrix-stats-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>rank-eval-client</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         *
         * @return whether the interim response has been handled
         */
        public boolean isAsyncHandled() {
            return this.asyncHandled;
        }
    
        /**
         * Sets whether the asynchronous interim response has been handled.
         *
         * @param asyncHandled
         *            the asyncHandled to set
         */
        public void setAsyncHandled(final boolean asyncHandled) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/cors.md

    * `expose_headers` - Indicate any response headers that should be made accessible to the browser. Defaults to `[]`.
    * `max_age` - Sets a maximum time in seconds for browsers to cache CORS responses. Defaults to `600`.
    
    The middleware responds to two particular types of HTTP request...
    
    ### CORS preflight requests { #cors-preflight-requests }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-nested-models.md

    ## Set types { #set-types }
    
    But then we think about it, and realize that tags shouldn't repeat, they would probably be unique strings.
    
    And Python has a special data type for sets of unique items, the `set`.
    
    Then we can declare `tags` as a set of strings:
    
    {* ../../docs_src/body_nested_models/tutorial003_py310.py hl[12] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/response-model.md

    /// tip
    
    The syntax `{"name", "description"}` creates a `set` with those two values.
    
    It is equivalent to `set(["name", "description"])`.
    
    ///
    
    #### Using `list`s instead of `set`s { #using-lists-instead-of-sets }
    
    If you forget to use a `set` and use a `list` or `tuple` instead, FastAPI will still convert it to a `set` and it will work correctly:
    
    {* ../../docs_src/response_model/tutorial006_py310.py hl[29,35] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top