Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Operator (0.17 sec)

  1. src/main/java/jcifs/smb/SmbNamedPipe.java

    
        /**
         * Open the Named Pipe resource specified by the url
         * parameter. The pipeType parameter should be at least one of
         * the <code>PIPE_TYPE</code> flags combined with the bitwise OR
         * operator <code>|</code>. See the examples listed above.
         * 
         * @param url
         * @param pipeType
         * @param unshared
         *            whether to use an exclusive connection for this pipe
         * @param tc
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

        /**
         * Open the Named Pipe resource specified by the url
         * parameter. The pipeType parameter should be at least one of
         * the <code>PIPE_TYPE</code> flags combined with the bitwise OR
         * operator <code>|</code>. See the examples listed above.
         */
    
        public SmbNamedPipe( String url, int pipeType )
                                throws MalformedURLException, UnknownHostException {
            super( url );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            String authorization = null;
            List methods = (List) getHeaderFields0().get(authHeader);
            if (methods == null) return null;
            Iterator iterator = methods.iterator();
            while (iterator.hasNext()) {
                String currentAuthMethod = (String) iterator.next();
                if (currentAuthMethod.startsWith("NTLM")) {
                    if (currentAuthMethod.length() == 4) {
                        authMethod = "NTLM";
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                List<String> methods = getHeaderFields0().get(authHeader);
                if ( methods == null )
                    return null;
                Iterator<String> iterator = methods.iterator();
                while ( iterator.hasNext() ) {
                    String currentAuthMethod = iterator.next();
                    if ( currentAuthMethod.startsWith("NTLM") ) {
                        if ( currentAuthMethod.length() == 4 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/av/AvPairs.java

    
        /**
         * 
         * @param pairs
         * @param type
         * @return first occurance of the given type
         */
        public static AvPair get ( List<AvPair> pairs, int type ) {
            Iterator<AvPair> it = pairs.iterator();
            while ( it.hasNext() ) {
                AvPair p = it.next();
                if ( p.getType() == type ) {
                    return p;
                }
            }
            return null;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

                        boolean notified = false;
                        Iterator<Entry<Long, Response>> iterator = this.response_map.entrySet().iterator();
                        while ( iterator.hasNext() ) {
                            Response resp = iterator.next().getValue();
                            resp.exception(ex);
                            iterator.remove();
                            notified = true;
    
                        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#hasNext()
         */
        @Override
        public boolean hasNext () {
            return this.next != null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#next()
         */
        @Override
        public FileEntry next () {
            FileEntry n = this.next;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         * 
         * @param wildcard
         * @return an iterator over the child resources
         * @throws CIFSException
         */
        CloseableIterator<SmbResource> children ( String wildcard ) throws CIFSException;
    
    
        /**
         * @param filter
         *            filter acting on file names
         * @return an iterator over the child resources
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/DfsImpl.java

            }
            String key = "\\" + domain + "\\" + root;
            if ( !path.equals("\\") ) {
                key += path;
            }
    
            key = key.toLowerCase(Locale.ROOT);
    
            Iterator<String> iter = refs.map.keySet().iterator();
            int searchLen = key.length();
            while ( iter.hasNext() ) {
                String cachedKey = iter.next();
                int cachedKeyLen = cachedKey.length();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ACE.java

        /**
         * Returns the access mask associated with this ACE. Use the
         * constants for <tt>FILE_READ_DATA</tt>, <tt>FILE_WRITE_DATA</tt>,
         * <tt>READ_CONTROL</tt>, <tt>GENERIC_ALL</tt>, etc with bitwise
         * operators to determine which bits of the mask are on or off.
         * 
         * @return the access mask
         */
        int getAccessMask ();
    
    
        /**
         * Returns the 'Apply To' text for inheritance of ACEs on
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
Back to top