Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 643 for least (0.06 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    said the March Hare.
    
      `Exactly so,' said Alice.
    
      `Then you should say what you mean,' the March Hare went on.
    
      `I do,' Alice hastily replied; `at least--at least I mean what
    I say--that's the same thing, you know.'
    
      `Not the same thing a bit!' said the Hatter.  `You might just
    as well say that "I see what I eat" is the same thing as "I eat
    what I see"!'
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                assertEquals(0, emptyNameRequest.getName().length);
    
                int result = emptyNameRequest.encode(testBuffer, 0);
                assertTrue(result >= 8); // At least header size
            }
    
            @Test
            @DisplayName("Should count method calls correctly")
            void testMethodCallCounting() {
                assertEquals(0, testRequest.getSizeCallCount());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedLongs.java

       */
      @SuppressWarnings("InlineMeInliner") // Integer.compare unavailable under GWT+J2CL
      public static int compare(long a, long b) {
        return Longs.compare(flip(a), flip(b));
      }
    
      /**
       * Returns the least value present in {@code array}, treating values as unsigned.
       *
       * @param array a <i>nonempty</i> array of unsigned {@code long} values
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/ThrowablesTest.java

                ClassCastException.class, () -> getCauseAs(thrown, IllegalStateException.class));
        assertThat(expected).hasCauseThat().isSameInstanceAs(thrown);
      }
    
      @AndroidIncompatible // No getJavaLangAccess in Android (at least not in the version we use).
      @J2ktIncompatible
      @GwtIncompatible // lazyStackTraceIsLazy()
      public void testLazyStackTraceWorksInProd() {
        // TODO(b/64442212): Remove this guard once lazyStackTrace() works in Java 9+.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java

            // For BUFFER_OVERFLOW with FSCTL_PIPE_PEEK, isErrorResponseStatus() should be false and decoding proceeds.
            byte[] header = buildHeader(NtStatus.NT_STATUS_BUFFER_OVERFLOW);
    
            // SrvPipePeekResponse expects at least 16 bytes (4 ints) output
            byte[] out = new byte[16];
            // leave all fields zero for simplicity
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

            assertEquals(TEST_RESUME_KEY, SMBUtil.readInt4(buffer, 6));
    
            // Empty filename should result in minimal bytes written
            assertTrue(written >= 12); // At least the fixed parameters
        }
    
        @Test
        void testInformationLevelConstant() {
            // Verify the information level is set correctly
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

      }
    
      /**
       * Tries to perform a "full" garbage collection cycle (including processing of weak references and
       * invocation of finalize methods) and waits for it to complete. Ensures that at least one weak
       * reference has been cleared and one {@code finalize} method has been run before this method
       * returns. This method may be useful when testing the garbage collection mechanism itself, or
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/StandardTable.java

           * requireNonNull is safe because:
           *
           * - columnIterator started off pointing to an empty iterator, so we must have entered the
           *   `if` body above at least once. Thus, if we got this far, that `if` body initialized
           *   rowEntry at least once.
           *
           * - The only case in which rowEntry is cleared (during remove() below) happens only if the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  9. docs/smb3-features/03-multi-channel-design.md

        private final ChannelManager manager;
        private LoadBalancingStrategy strategy;
        
        public enum LoadBalancingStrategy {
            ROUND_ROBIN,      // Rotate through channels
            LEAST_LOADED,     // Select least busy channel
            WEIGHTED_RANDOM,  // Random selection weighted by score
            AFFINITY_BASED,   // Stick to same channel for related operations
            ADAPTIVE         // Dynamically adjust based on performance
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            setRequestedOplockLevel(SMB2_OPLOCK_LEVEL_LEASE);
        }
    
        /**
         * Add a lease V2 context to this request
         * @param leaseKey the lease key
         * @param requestedState the requested lease state
         * @param parentLeaseKey the parent lease key (can be null)
         * @param epoch the lease epoch
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top