Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,231 for Implementation (0.08 sec)

  1. guava/src/com/google/common/collect/ImmutableMapEntry.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * Implementation of {@code Entry} for {@link ImmutableMap} that adds extra methods to traverse hash
     * buckets for the key and the value. This allows reuse in {@link RegularImmutableMap} and {@link
     * RegularImmutableBiMap}, which don't have to recopy the entries created by their {@code Builder}
     * implementations.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 21:42:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

    import org.junit.jupiter.params.provider.ValueSource;
    
    /**
     * Test class for CreateContextRequest interface
     */
    @DisplayName("CreateContextRequest Tests")
    class CreateContextRequestTest {
    
        /**
         * Test implementation of CreateContextRequest for testing purposes
         */
        static class TestCreateContextRequest implements CreateContextRequest {
            private byte[] name;
            private byte[] data;
            private int encodedSize;
    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. src/test/java/jcifs/internal/AllocInfoTest.java

     */
    class AllocInfoTest {
    
        @Mock
        private AllocInfo mockAllocInfo;
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
        }
    
        /**
         * Test implementation class for AllocInfo interface
         */
        static class TestAllocInfo implements AllocInfo {
            private final long capacity;
            private final long free;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac.kerberos;
    
    /**
     * Constants used in Kerberos protocol implementation.
     */
    public interface KerberosConstants {
    
        /** Kerberos OID identifier */
        String KERBEROS_OID = "1.2.840.113554.1.2.2";
        /** Kerberos protocol version */
        String KERBEROS_VERSION = "5";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. android-test/build.gradle.kts

        "META-INF/DEPENDENCIES",
        "META-INF/LICENSE.md",
        "META-INF/LICENSE-notice.md",
        "README.txt",
        "org/bouncycastle/LICENSE"
      )
    }
    
    dependencies {
      implementation(libs.kotlin.reflect)
      implementation(libs.playservices.safetynet)
      "friendsImplementation"(projects.okhttp)
      "friendsImplementation"(projects.okhttpDnsoverhttps)
    
      testImplementation(projects.okhttp)
      testImplementation(libs.junit)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 20:01:04 UTC 2025
    - 3.8K bytes
    - Viewed (2)
  6. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                assertTrue(isValid, "Should indicate valid TID");
                verify(mockResponse).isValidTid();
            }
        }
    
        /**
         * Tests for SMB2 implementation of TreeConnectResponse
         */
        @Nested
        @DisplayName("SMB2 Implementation Tests")
        class Smb2TreeConnectResponseTests {
    
            private Smb2TreeConnectResponse response;
    
            @BeforeEach
            void setUp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Invoker.java

        /**
         * Closes and disposes of this {@link Invoker} instance, releasing any resources it may hold.
         * This method is called automatically when using try-with-resources statements.
         *
         * <p>The default implementation does nothing. Subclasses should override this method
         * if they need to perform cleanup operations.</p>
         *
         * @throws InvokerException if an error occurs while closing the {@link Invoker}
         */
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/util/HMACT64Test.java

            // Calculate expected HMAC-MD5 using standard Java MessageDigest for comparison
            // This is a simplified HMAC-MD5 calculation for comparison, not a full RFC 2104 implementation.
            // The HMACT64 implementation is what we are testing.
            MessageDigest md5 = MessageDigest.getInstance("MD5");
            byte[] ipad = new byte[64];
            byte[] opad = new byte[64];
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

         * An application extending this class must provide an implementation for this method that returns new user credentials try try when accessing SMB resources described by the <code>getRequestingURL</code> and <code>getRequestingException</code> methods.
         * If this method returns <code>null</code> the <code>SmbAuthException</code> that triggered the authenticator check will simply be rethrown. The default implementation returns <code>null</code>.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

     */
    public interface SourceRoot {
        /**
         * {@return the root directory where the sources are stored}.
         * The path is relative to the <abbr>POM</abbr> file.
         *
         * <h4>Default implementation</h4>
         * The default value depends on whether a {@linkplain #module() module name} is specified in this source root:
         * <ul>
         *   <li>
         *     If no module name, then the default directory is
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top