Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Improvements (0.41 sec)

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

    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.internal.smb2.nego.Smb2NegotiateResponse;
    
    /**
     * Test Pre-Authentication Integrity improvements
     */
    @ExtendWith(MockitoExtension.class)
    @MockitoSettings(strictness = Strictness.LENIENT)
    public class PreauthIntegrityTest {
    
        @Mock
        private CIFSContext context;
    
        @Mock
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. docs/en/docs/history-design-future.md

    It is being chosen over previous alternatives for suiting many use cases better.
    
    Many developers and teams already depend on **FastAPI** for their projects (including me and my team).
    
    But still, there are many improvements and features to come.
    
    **FastAPI** has a great future ahead.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. README.md

    │   └── ...            # Additional utility packages
    └── src/test/java/      # Comprehensive test suite
    ```
    
    ## 📊 Performance Metrics
    
    CoreLib 0.7.0 includes significant performance improvements through Java 21 optimizations:
    
    - **5-15% faster** type conversions with pattern matching and switch expressions
    - **Reduced memory allocation** in collection operations and bean copying
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/CriticalPerformanceTest.java

            System.out.printf("Connection Pool Performance: %d ops in %.2f ms (%.2f ms avg per thread)%n", successCount.get(), overallTimeMs,
                    avgThreadTimeMs);
    
            // Verify performance improvements
            assertTrue(exceptions.isEmpty(), "No exceptions should occur during concurrent access");
            assertEquals(threadCount * operationsPerThread, successCount.get());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

    https://gitlab.com/euri10/fastapi_cheatsheet title: A FastAPI and Swagger UI visual cheatsheet - author: Uber Engineering author_link: https://eng.uber.com link: https://eng.uber.com/ludwig-v0-2/ title: 'Uber: Ludwig v0.2 Adds New Features and Other Improvements to its Deep Learning Toolbox [including a FastAPI server]' - author: Maarten Grootendorst author_link: https://www.linkedin.com/in/mgrootendorst/ link: https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf title: How...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 23K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

       * to prove its primality. Values from miller-rabin.appspot.com.
       *
       * NOTE: We could get slightly better bases that would be treated as unsigned, but benchmarks
       * showed negligible performance improvements.
       */
      private static final long[][] millerRabinBaseSets = {
        {291830, 126401071349994536L},
        {885594168, 725270293939359937L, 3569819667048198375L},
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ### Migration
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
      KIND, either express or implied.  See the License for the
      specific language governing permissions and limitations
      under the License.
    -->
    
    <!--
      | Improvements:
      |
      | o add specification element to a field, this would be more a technical description of
      |   what is allowed in the field.
      |
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  9. docs/SMB3_IMPLEMENTATION_PLAN.md

    - Performance testing infrastructure
    
    ## Success Metrics
    
    1. **Functional Completeness**: All features pass Windows Protocol Test Suite
    2. **Performance**: 
       - Multi-channel provides >1.5x throughput improvement
       - RDMA reduces latency by >50%
    3. **Reliability**: 
       - Persistent handles survive 99% of network interruptions
       - Witness protocol achieves <5 second failover time
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. docs/smb3-features/03-multi-channel-design.md

        // Measure multi-channel throughput
        long multiChannelTime = measureReadTime(file, true);
        
        // Multi-channel should be faster
        assertTrue(multiChannelTime < singleChannelTime * 0.7);  // At least 30% improvement
    }
    ```
    
    ## 8. Performance Metrics
    
    ### 8.1 Channel Statistics
    ```java
    public class MultiChannelStatistics {
        private final Map<String, ChannelStatistics> channelStats;
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top