Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 837 for multiples (0.05 seconds)

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

  1. guava/src/com/google/common/math/LongMath.java

                  // It's definitely safe to multiply into numerator and denominator.
                  numerator *= n;
                  denominator *= i;
                  numeratorBits += nBits;
                } else {
                  // It might not be safe to multiply into numerator and denominator,
                  // so multiply (numerator / denominator) into result.
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 03 21:01:09 GMT 2025
    - 46.8K bytes
    - Click Count (0)
  2. docs/bucket/versioning/README.md

    > NOTE: Server side replication is supported for idempotent versions on directory objects.
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 12K bytes
    - Click Count (0)
  3. fastapi/security/api_key.py

                    This is useful when you want to have optional authentication.
    
                    It is also useful when you want to have authentication that can be
                    provided in one of multiple optional ways (for example, in a query
                    parameter or in an HTTP Bearer token).
                    """
                ),
            ] = True,
        ):
            super().__init__(
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 9.6K bytes
    - Click Count (1)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            assertNull(responseData.getUrl());
            assertEquals(0, responseData.getHttpStatusCode());
        }
    
        public void test_processMultipleTimes() {
            // Test calling process multiple times
            NullResponseProcessor processor = new NullResponseProcessor();
            ResponseData responseData1 = new ResponseData();
            responseData1.setUrl("https://example.com/page1");
    
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 13 13:29:22 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  5. internal/http/listener.go

    	"syscall"
    	"time"
    
    	"github.com/minio/minio/internal/deadlineconn"
    )
    
    type acceptResult struct {
    	conn net.Conn
    	err  error
    	lidx int
    }
    
    // httpListener - HTTP listener capable of handling multiple server addresses.
    type httpListener struct {
    	opts        TCPOptions
    	listeners   []net.Listener    // underlying TCP listeners.
    	acceptCh    chan acceptResult // channel where all TCP listeners write accepted connection.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/SmbNegotiationRequestTest.java

            // Then
            assertFalse(result, "isSigningEnforced should return false when signing is not enforced");
            verify(negotiationRequest, times(1)).isSigningEnforced();
        }
    
        @Test
        @DisplayName("Test multiple calls to isSigningEnforced")
        void testMultipleCallsToIsSigningEnforced() {
            // Given
            when(negotiationRequest.isSigningEnforced()).thenReturn(true).thenReturn(false).thenReturn(true);
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  7. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

                        long multiplier = 1L << safeShift;
                        // Check for potential overflow before multiplication
                        long delay = (retryDelayMs > Long.MAX_VALUE / multiplier) ? MAX_RETRY_DELAY
                                : Math.min(MAX_RETRY_DELAY, retryDelayMs * multiplier);
                        Thread.sleep(delay);
                    }
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  8. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            assertEquals(0x12345678, ((AvFlags) pair).getFlags(), "Flags value should match");
        }
    
        /**
         * Test decode with multiple AvPairs
         */
        @Test
        @DisplayName("Decode multiple AvPairs with EOL")
        void testDecodeMultiplePairs() throws CIFSException {
            // Create multiple AvPairs
            byte[] flagData = new byte[4];
            SMBUtil.writeInt4(0xAABBCCDD, flagData, 0);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  9. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

        }
    
        // We need to take in multiple lifecycles
        @Test
        public void testCalculationOfBuildPlanWithMultipleExecutionsOfModello() throws Exception {
            File pom = getProject("project-with-multiple-executions");
            MavenSession session = createMavenSession(pom);
            assertEquals(
                    "project-with-multiple-executions", session.getCurrentProject().getArtifactId());
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 22.9K bytes
    - Click Count (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java

        public void test_multipleCloseCallsDoNothing() throws IOException {
            // Test that multiple close() calls are all ignored
            byte[] data = "Test data".getBytes();
            ByteArrayInputStream underlyingStream = new ByteArrayInputStream(data);
            IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream);
    
            // Multiple close calls should all be ignored
            stream.close();
            stream.close();
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Nov 22 13:28:22 GMT 2025
    - 6.6K bytes
    - Click Count (0)
Back to Top