Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1971 - 1980 of 4,473 for _extends (0.04 seconds)

  1. guava-tests/test/com/google/common/collect/ForwardingListMultimapTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for {@link ForwardingListMultimap}.
     *
     * @author Kurt Alfred Kluever
     */
    @NullUnmarked
    public class ForwardingListMultimapTest extends TestCase {
    
      @SuppressWarnings("rawtypes")
      public void testForwarding() {
        new ForwardingWrapperTester()
            .testForwarding(
                ListMultimap.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/ForwardingSetMultimapTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for {@link ForwardingSetMultimap}.
     *
     * @author Kurt Alfred Kluever
     */
    @NullUnmarked
    public class ForwardingSetMultimapTest extends TestCase {
    
      @SuppressWarnings("rawtypes")
      public void testForwarding() {
        new ForwardingWrapperTester()
            .testForwarding(
                SetMultimap.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/ForwardingSortedSetMultimapTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for {@link ForwardingSortedSetMultimap}.
     *
     * @author Kurt Alfred Kluever
     */
    @NullUnmarked
    public class ForwardingSortedSetMultimapTest extends TestCase {
    
      @SuppressWarnings("rawtypes")
      public void testForwarding() {
        new ForwardingWrapperTester()
            .testForwarding(
                SortedSetMultimap.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureDefaultAtomicHelperTest.java

     * AbstractFutureFallbackAtomicHelperTest}. The advantage to this test is that it can run under
     * Android.
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class AbstractFutureDefaultAtomicHelperTest extends TestCase {
      public void testUsingExpectedAtomicHelper() throws Exception {
        if (isJava8() || isAndroid()) {
          assertThat(AbstractFutureState.atomicHelperTypeForTest()).isEqualTo("UnsafeAtomicHelper");
        } else {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 02:20:33 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrConnect4.java

     * This class provides functionality to establish a connection to the
     * Security Account Manager (SAM) database using the SAMR RPC interface version 4.
     */
    public class MsrpcSamrConnect4 extends samr.SamrConnect4 {
    
        /**
         * Creates a new request to connect to the SAM service.
         *
         * @param server the server name to connect to
         * @param access the desired access rights
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb/StaticJAASConfiguration.java

    import javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag;
    import javax.security.auth.login.Configuration;
    
    /**
     * @author mbechler
     *
     */
    class StaticJAASConfiguration extends Configuration {
    
        private Map<String, ?> options;
    
        /**
         * Initialize a static JAAS configuration with default settings
         */
        public StaticJAASConfiguration() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2.java

     * This class provides functionality to establish a connection to the
     * Security Account Manager (SAM) database using the SAMR RPC interface.
     */
    public class MsrpcSamrConnect2 extends samr.SamrConnect2 {
    
        /**
         * Creates a new request to connect to the SAM service.
         *
         * @param server the server name to connect to
         * @param access the desired access rights
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComCreateDirectory.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class SmbComCreateDirectory extends ServerMessageBlock {
    
        SmbComCreateDirectory(final String directoryName) {
            this.path = directoryName;
            command = SMB_COM_CREATE_DIRECTORY;
        }
    
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.settings.Settings;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilderResult extends Result<SettingsBuilderRequest> {
    
        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jan 29 08:17:07 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProvider.java

    import org.apache.maven.api.model.Model;
    
    /**
     * Provides the super POM that all models implicitly inherit from.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SuperPomProvider extends Service {
    
        /**
         * Gets the super POM for the specified model version.
         *
         * @param version The model version to retrieve the super POM for (e.g. "4.0.0"), must not be {@code null}.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.5K bytes
    - Click Count (0)
Back to Top