Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for interfaces (0.3 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

    import jcifs.smb1.dcerpc.msrpc.*;
    
    public class DcerpcBinding {
    
        private static HashMap INTERFACES;
    
        static {
            INTERFACES = new HashMap();
            INTERFACES.put("srvsvc", srvsvc.getSyntax());
            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  2. LICENSE

          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
          the original version of the Work and any modifications or additions
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcBinding.java

        private static final Map<String, String> INTERFACES = new HashMap<>();
    
    
        static {
            INTERFACES.put("srvsvc", srvsvc.getSyntax());
            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
            INTERFACES.put("netlogon", "12345678-1234-abcd-ef00-01234567cffb:1.0");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

         *            対象のインターフェース
         */
        protected void setupFieldDescsByInterface(final Class<?> interfaceClass) {
            addFieldDescs(interfaceClass);
            final Class<?>[] interfaces = interfaceClass.getInterfaces();
            for (final Class<?> intf : interfaces) {
                setupFieldDescsByInterface(intf);
            }
        }
    
        /**
         * クラスに定義されたフィールドを準備します。
         *
         * @param targetClass
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/GenericsUtil.java

                gatherTypeVariables(superClass, superClassType, map);
            }
    
            final Class<?>[] interfaces = clazz.getInterfaces();
            final Type[] interfaceTypes = clazz.getGenericInterfaces();
            for (int i = 0; i < interfaces.length; ++i) {
                gatherTypeVariables(interfaces[i], interfaceTypes[i], map);
            }
    
            return map;
        }
    
        /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

    import org.lastaflute.web.validation.LaValidatable;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * @author jflute
     */
    public abstract class FessBaseAction extends TypicalAction // has several interfaces for direct use
            implements LaValidatable<FessMessages>, FessHtmlPath {
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  7. README.fr.md

    ### Interfaces Web
    
    - Interface de recherche : http://localhost:8080/
    
    ![Interface de recherche](https://fess.codelibs.org/_images/fess_search_result1.png)
    
    - Interface d'administration : http://localhost:8080/admin/ (identifiant et mot de passe à l'installation : admin/admin)
    
    ![Interface d'administration](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  8. LICENSE

          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
          the original version of the Work and any modifications or additions
    Plain Text
    - Registered: Thu Apr 25 15:34:08 GMT 2024
    - Last Modified: Thu Jun 14 07:45:22 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

        //                                                                  Resource Interface
        //                                                                  ==================
        @FunctionalInterface
        public interface UserTypeSupplier {
            OptionalThing<String> supply();
        }
    
        @FunctionalInterface
        public interface UserBeanSupplier {
            OptionalThing<FessUserBean> supply();
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

         *
         */
        public interface Foo<T1, T2> {
    
            /**
             * @param foo
             * @return T2
             */
            T2 foo(T1 foo);
        }
    
        /**
         *
         */
        public interface Bar extends Foo<Integer, Long> {
        }
    
        /**
         * @param <T1>
         * @param <T2>
         *
         */
        public interface Baz<T1, T2> {
    
            /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.5K bytes
    - Viewed (0)
Back to top