Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for confirmed (0.05 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRegistration.java

         * Enumeration of possible witness registration states.
         */
        public enum WitnessRegistrationState {
            /** Registration is in progress */
            REGISTERING,
            /** Registration is active and confirmed */
            REGISTERED,
            /** Unregistration is in progress */
            UNREGISTERING,
            /** Registration has failed */
            FAILED,
            /** Registration has expired due to timeout */
            EXPIRED
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/ResourceManager.java

                    sb.append("\tat ").append(element).append("\n");
                }
                log.debug(sb.toString());
            }
        }
    
        /**
         * Report a confirmed resource leak
         */
        private void reportLeak(ResourceHolder holder) {
            totalLeaks.incrementAndGet();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                This flag provides an easy way to include or exclude some sources depending, for example,
                o property values defined in profiles. A use case is including optional resources only
                when the user confirmed a license agreement.
    
                <p>The default value is {@code true}.</p>
                ]]>
              </description>
              <type>boolean</type>
              <defaultValue>true</defaultValue>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

      }
    
      /** Confirm that get() returns a List implementing RandomAccess. */
      public void testGetRandomAccess() {
        Multimap<String, Integer> multimap = create();
        multimap.put("foo", 1);
        multimap.put("foo", 3);
        assertTrue(multimap.get("foo") instanceof RandomAccess);
        assertTrue(multimap.get("bar") instanceof RandomAccess);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SecurityBlobTest.java

            assertTrue(blob.equals(blob), "Object should be equal to itself");
            assertEquals(blob.get().hashCode(), blob.hashCode(), "hashCode should delegate to internal array");
        }
    
        // Confirms constructor handles null by producing an empty buffer
        @Test
        @DisplayName("Constructor with null sets empty buffer")
        void constructor_withNull_setsEmpty() {
            // Arrange & Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/pac/kerberos/KerberosConstantsTest.java

         */
        @Test
        void testConstants() {
            // A simple assertion to verify that some of the constants have the expected values.
            // This confirms that the class is on the classpath and its fields are accessible.
            assertEquals("1.2.840.113554.1.2.2", KerberosConstants.KERBEROS_OID, "KERBEROS_OID should have the correct value.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java

     */
    package jcifs.internal.smb2;
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Echo response message.
     *
     * This response confirms that the server is still active
     * and the connection is working properly.
     *
     * @author mbechler
     */
    public class Smb2EchoResponse extends ServerMessageBlock2Response {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbTreeHandleImplTest.java

            verify(treeConnection).getSession();
        }
    
        @Test
        @DisplayName("ensureDFSResolved forwards to tree connection with locator")
        void ensureDFSResolvedDelegates() throws Exception {
            // Confirms DFS resolution is delegated with the correct locator
            // Act
            handle.ensureDFSResolved();
            // Assert & interaction verify
            verify(treeConnection).ensureDFSResolved(resourceLoc);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/io/Smb2FlushResponse.java

    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Flush response message.
     *
     * This response confirms that buffered data has been
     * successfully flushed to the storage device.
     *
     * @author mbechler
     */
    public class Smb2FlushResponse extends ServerMessageBlock2Response {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponse.java

    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Tree Disconnect response message.
     *
     * This response confirms that the tree connection
     * has been successfully disconnected.
     *
     * @author mbechler
     */
    public class Smb2TreeDisconnectResponse extends ServerMessageBlock2Response {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top