Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 81 for Tata (0.47 sec)

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

            return this.mechContext.isPreferredMech(mech);
        }
    
    
        @Override
        public byte[] calculateMIC ( byte[] data ) throws CIFSException {
            if ( !this.completed ) {
                throw new CIFSException("Context is not established");
            }
            return this.mechContext.calculateMIC(data);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#verifyMIC(byte[], byte[])
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

            if( Character.isDigit( hostname.charAt( 0 ))) {
                int i, len, dots;
                char[] data;
    
                i = dots = 0;                    /* quick IP address validation */
                len = hostname.length();
                data = hostname.toCharArray();
                while( i < len && Character.isDigit( data[i++] )) {
                    if( i == len && dots == 3 ) {
                        // probably an IP address
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/WinError.java

            "The pipe state is invalid.",
            "All pipe instances are busy.",
            "The pipe is being closed.",
            "No process is on the other end of the pipe.",
            "More data is available.",
            "The list of servers for this workgroup is not currently available.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosToken.java

                if ( !kerberosOid.getId().equals(KerberosConstants.KERBEROS_OID) )
                    throw new PACDecodingException("Not a kerberos token");
    
    
                // yes, there really is non ASN.1/DER data inside the tagged object
                int read = 0;
                int readLow = stream.read() & 0xff;
                int readHigh = stream.read() & 0xff;
                read = ( readHigh << 8 ) + readLow;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/WinError.java

            "The pipe state is invalid.", "All pipe instances are busy.", "The pipe is being closed.", "No process is on the other end of the pipe.",
            "More data is available.", "The service is not available", "The list of servers for this workgroup is not currently available.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbNamedPipe.java

    import jcifs.SmbPipeResource;
    import jcifs.internal.smb1.com.SmbComNTCreateAndX;
    import jcifs.internal.smb1.com.SmbComNTCreateAndXResponse;
    
    
    /**
     * This class will allow a Java program to read and write data to Named
     * Pipes and Transact NamedPipes.
     *
     * <p>
     * There are three Win32 function calls provided by the Windows SDK
     * that are important in the context of using jCIFS. They are:
     *
     * <ul>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResourceLocator.java

         *         resource or <code>smb://</code> if the resource is <code>smb://</code>
         *         itself.
         */
    
        String getName ();
    
    
        /**
         * 
         * @return dfs referral data
         */
        DfsReferralData getDfsReferral ();
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         */
        int getMaximumBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.transaction_buf_size</tt> (int, default 65535)
         * 
         * @return maximum data size for SMB transactions
         */
        int getTransactionBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16)
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/ReadWriteTest.java

                }
    
                byte verify[] = new byte[read];
                randBytes(r, verify);
                byte actual[] = Arrays.copyOfRange(buffer, 0, read);
    
                assertArrayEquals("Data matches at offset " + p, actual, verify);
    
                p += read;
            }
            if ( expectEof ) {
                assertEquals("Expecting EOF", -1, is.read(buffer, 0, 1));
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

    
        /**
         * Returns a {@link java.net.URL} for this <code>SmbFile</code>. The
         * <code>URL</code> may be used as any other <code>URL</code> might to
         * access an SMB resource. Currently only retrieving data and information
         * is supported (i.e. no <tt>doOutput</tt>).
         *
         * @deprecated Use getURL() instead
         * @return A new <code>{@link java.net.URL}</code> for this <code>SmbFile</code>
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top