Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 368 for back (0.03 sec)

  1. src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java

            // Write parameters to verify the masked value is used
            byte[] buffer = new byte[100];
            int written = trans2FindFirst2.writeParametersWireFormat(buffer, 0);
    
            // Read back the search attributes
            int writtenAttributes = SMBUtil.readInt2(buffer, 0);
            assertEquals(expectedAttributes, writtenAttributes);
        }
    
        @Test
        @DisplayName("Test writeSetupWireFormat")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/internal/Finalizer.java

        try {
          return Thread.class.getConstructor(
              ThreadGroup.class, Runnable.class, String.class, long.class, boolean.class);
        } catch (Throwable t) {
          // Probably pre Java 9. We'll fall back to Thread.inheritableThreadLocals.
          return null;
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

                auth.setRealm("REALM.TEST");
                assertEquals("REALM.TEST", auth.getUserDomain());
            }
    
            @Test
            @DisplayName("getUserDomain: falls back to super domain when no realm/subject")
            void getUserDomain_fallbackToSuper() {
                Kerb5Authenticator auth = new Kerb5Authenticator(null, "DOM", "u", "p");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashSet.java

       * input.
       */
      @VisibleForTesting(
          )
      static final double HASH_FLOODING_FPP = 0.001;
    
      /**
       * Maximum allowed length of a hash table bucket before falling back to a j.u.LinkedHashSet based
       * implementation. Experimentally determined.
       */
      private static final int MAX_HASH_BUCKET_LENGTH = 9;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/RequestWithPathTest.java

            assertFalse(testImplementation.isResolveInDfs());
    
            // Toggle to true
            testImplementation.setResolveInDfs(true);
            assertTrue(testImplementation.isResolveInDfs());
    
            // Toggle back to false
            testImplementation.setResolveInDfs(false);
            assertFalse(testImplementation.isResolveInDfs());
    
            // Multiple toggles
            for (int i = 0; i < 10; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. docs/smb3-features/06-witness-protocol-design.md

        
        private void scheduleServiceRetry() {
            scheduler.schedule(() -> {
                try {
                    // Test if service is back online
                    if (testWitnessService()) {
                        serviceAvailable = true;
                        log.info("Witness service is back online");
                        
                        // Re-register for notifications
                        reregisterNotifications();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            assertTrue(helper.isCrawlerRunning());
    
            // Test setting to false
            helper.setCrawlerRunning(false);
            assertFalse(helper.isCrawlerRunning());
    
            // Test setting back to true
            helper.setCrawlerRunning(true);
            assertTrue(helper.isCrawlerRunning());
        }
    
        public void test_setCrawlerWaitMillis() {
            IntervalControlHelper helper = new IntervalControlHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            assertEquals("{labels.profile.title}", FessLabels.LABELS_PROFILE_TITLE);
            assertEquals("{labels.profile.update}", FessLabels.LABELS_PROFILE_UPDATE);
            assertEquals("{labels.profile.back}", FessLabels.LABELS_PROFILE_BACK);
            assertEquals("{labels.profile.placeholder_old_password}", FessLabels.LABELS_PROFILE_placeholder_old_password);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       *
       * @return the fully constructed {@link ThreadFactory}
       */
      public ThreadFactory build() {
        return doBuild(this);
      }
    
      // Split out so that the anonymous ThreadFactory can't contain a reference back to the builder.
      // At least, I assume that's why. TODO(cpovirk): Check, and maybe add a test for this.
      @SuppressWarnings("ThreadPriorityCheck") // We only propagate user requests (which we discourage).
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:35:26 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java

            TestMessage m = new TestMessage();
            m.ptype = 0; // request
            m.flags = 0x05;
            m.alloc_hint = 0;
            NdrBuffer buf = new NdrBuffer(new byte[1024], 0);
            m.encode(buf);
            // decode back
            buf.setIndex(0);
            m.decode_header(buf);
            assertEquals(0, m.ptype);
        }
    
        @Test
        void testDecodeHeaderInvalidVersion() {
            NdrBuffer buf = new NdrBuffer(new byte[10], 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top