Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 62 for 75 (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt

        val pool = factory.newConnectionPool()
        val c1 = factory.newConnection(pool, routeA1, 75L)
        val c2 = factory.newConnection(pool, routeB1, 50L)
    
        // Running at time 75, the pool returns that nothing can be evicted until time 150.
        assertThat(pool.closeConnections(75L)).isEqualTo(75L)
        assertThat(pool.connectionCount()).isEqualTo(2)
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 21:55:03 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

        }
    
        @Test
        @DisplayName("writeDataWireFormat with offset should return 0")
        void testWriteDataWireFormatWithOffset() {
            // Arrange
            byte[] dst = new byte[100];
            int dstIndex = 75;
    
            // Act
            int result = response.writeDataWireFormat(dst, dstIndex);
    
            // Assert
            assertEquals(0, result);
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  3. internal/s3select/csv/testdata/testdata.zip

    ,8.50,1267,168,1,Manhattan,016800,1016800,E,MN33,East Harlem South,3804,1537,152,1,Manhattan,015200,1015200,I,MN32,Yorkville,3805^3389258,1,2014-03-27 16:46:32,2014-03-27 16:46:32,N,5,-73.951606750488281,40.790950775146484,,,1,0.00,0,0,0,0,0,,,0,2,,75,,green,0.00,0.0,0.0,44,22,6.71,1267,168,1,Manhattan,016800,1016800,E,MN33,East Harlem South,3804,,,,,,,,,,3389259,2,2014-03-09 00:44:10,2014-03-09 00:50:41,N,1,-73.887176513671875,40.818958282470703,-73.917510986328125,40.814346313476563,1,2.01,7.5...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Click Count (0)
  4. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                assertEquals(0, response.writeBytesWireFormat(dst, 25));
                assertEquals(0, response.writeBytesWireFormat(dst, 50));
                assertEquals(0, response.writeBytesWireFormat(dst, 75));
                assertEquals(0, response.writeBytesWireFormat(dst, 99));
            }
    
            @Test
            @DisplayName("Should return 0 with empty array")
            void testWriteBytesWireFormatWithEmptyArray() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 17.1K bytes
    - Click Count (0)
  5. cmd/authtype_string.go

    Klaus Post <******@****.***> 1683341592 -0700
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat May 06 02:53:12 GMT 2023
    - 1.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch-with-added-config.tar.gz

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch.tar.gz

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  8. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch-with-added-jar.tar.gz

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  9. cmd/handler-api.go

    		corsAllowOrigin = []string{"*"}
    	}
    	t.corsAllowOrigins = corsAllowOrigin
    
    	var apiRequestsMaxPerNode int
    	if cfg.RequestsMax <= 0 {
    		maxSetDrives := slices.Max(setDriveCounts)
    
    		// Returns 75% of max memory allowed
    		maxMem := globalServerCtxt.MemLimit
    
    		// max requests per node is calculated as
    		// total_ram / ram_per_request
    		blockSize := xioutil.LargeBlock + xioutil.SmallBlock
    		if legacy {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java

            byte[] dst = new byte[100];
            int result = response.writeDataWireFormat(dst, 0);
            assertEquals(0, result);
    
            // Test with different offset
            result = response.writeDataWireFormat(dst, 75);
            assertEquals(0, result);
        }
    
        @Test
        @DisplayName("Test readSetupWireFormat returns 0")
        void testReadSetupWireFormat() {
            byte[] buffer = new byte[100];
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.2K bytes
    - Click Count (0)
Back to Top