Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for initialized (0.23 sec)

  1. src/main/java/jcifs/util/Crypto.java

            }
            provider = customProvider;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/Request.java

     *            response type
     *
     */
    public interface Request <T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest {
    
        /**
         * 
         * @param tc
         * @return the initialized response
         * @internal
         */
        public T initResponse ( CIFSContext tc );
    
    
        /**
         * 
         * @return the response message
         */
        @Override
        public T getResponse ();
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/context/SingletonContext.java

            if ( INSTANCE != null ) {
                throw new CIFSException("Singleton context is already initialized");
            }
            Properties p = new Properties();
            try {
                String filename = System.getProperty("jcifs.properties");
                if ( filename != null && filename.length() > 1 ) {
    
                    try ( FileInputStream in = new FileInputStream(filename) ) {
                        p.load(in);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 08:53:08 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/EnumTest.java

                public List<ResolverType> getResolveOrder () {
                    return Arrays.asList(ResolverType.RESOLVER_WINS);
                }
            });
    
            // need to override NameServiceClient as it otherwise gets initialized with the original config
            final NameServiceClientImpl nsc = new NameServiceClientImpl(ctx);
            ctx = new CIFSContextWrapper(ctx) {
    
                @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmContext.java

        }
    
    
        @Override
        public byte[] calculateMIC ( byte[] data ) throws CIFSException {
            byte[] sk = this.signKey;
            if ( sk == null ) {
                throw new CIFSException("Signing is not initialized");
            }
    
            int seqNum = this.signSequence.getAndIncrement();
            byte[] seqBytes = new byte[4];
            SMBUtil.writeInt4(seqNum, seqBytes, 0);
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Config.java

     * should be sufficient for most needs.
     * 
     * If you want to retain the classic singleton behavior you can use
     * {@link jcifs.context.SingletonContext#getInstance()}
     * witch is initialized using system properties.
     * 
     */
    @SuppressWarnings ( "javadoc" )
    public class Config {
    
        private static final Logger log = LoggerFactory.getLogger(Config.class);
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SpnegoContext.java

        static {
            try {
                SPNEGO_MECH_OID = new ASN1ObjectIdentifier("1.3.6.1.5.5.2");
            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to initialize OID", e);
            }
        }
    
        private SSPContext mechContext;
    
        private boolean firstResponse = true;
        private boolean completed;
    
        private ASN1ObjectIdentifier[] mechs;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmServlet.java

                    this.realm = "jCIFS";
    
                this.transportContext = new BaseContext(new PropertyConfiguration(p));;
            }
            catch ( CIFSException ex ) {
                throw new ServletException("Failed to initialize config", ex);
            }
        }
    
    
        @Override
        protected void service ( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException {
            Address dc;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/Config.java

     * is global therefore property names should be unique. Before use,
     * the <code>load</code> method should be called with the name of a
     * <code>Properties</code> file (or <code>null</code> indicating no
     * file) to initialize the <code>Config</code>. The <code>System</code>
     * properties will then populate the <code>Config</code> as well potentially
     * overwriting properties from the file. Thus properties provided on the
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/Handler.java

                            handler = (URLStreamHandler) handlerClass.newInstance();
                            break;
                        }
                        catch ( Exception ex ) {
                            log.debug("Failed to initialize handler " + className, ex);
                        }
                    }
                }
                if ( handler == null ) {
                    for ( int i = 0; i < JVM_VENDOR_DEFAULT_PKGS.length; i++ ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
Back to top