Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Point (0.16 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

        /**
         * 
         */
        public static final int FSCTL_QUERY_NETWORK_INTERFACE_INFO = 0x001401FC;
        /**
         * 
         */
        public static final int FSCTL_SET_REPARSE_POINT = 0x000900A4;
        /**
         * 
         */
        public static final int FSCTL_DFS_GET_REFERRALS_EX = 0x000601B0;
        /**
         * 
         */
        public static final int FSCTL_FILE_LEVEL_TRIM = 0x00098208;
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                if( andxOffset == 0 ) { /* Snap server workaround */
                    andxCommand = (byte)0xFF;
                }
    
                /*
                 * no point in calling readParameterWordsWireFormat if there are no more
                 * parameter words. besides, win98 doesn't return "OptionalSupport" field
                 */
     
                if( wordCount > 2 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    /** 
     * A B node only broadcasts name queries. This is the default if a
     * nameserver such as WINS or Samba is not specified.
     */ 
    
        public static final int B_NODE = 0;
    
    /**
     * A Point-to-Point node, or P node, unicasts queries to a nameserver
     * only. Natrually the <code>jcifs.smb1.netbios.nameserver</code> property must
     * be set.
     */
    
        public static final int P_NODE = 1;
    
    /** 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Encdec.java

        }
        public static int enc_floatbe( float f, byte[] dst, int di )
        {
            return enc_uint32be( Float.floatToIntBits( f ), dst, di );
        }
    
        /* Decode floating point numbers
         */
    
        public static float dec_floatle( byte[] src, int si )
        {
            return Float.intBitsToFloat( dec_uint32le( src, si ));
        }
        public static float dec_floatbe( byte[] src, int si )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * 
         */
        public static final int FILE_RESERVE_OPFILTER = 0x100000;
        /**
         * 
         */
        public static final int FILE_OPEN_REPARSE_POINT = 0x200000;
        /**
         * 
         */
        public static final int FILE_NOP_RECALL = 0x400000;
        /**
         * 
         */
        public static final int FILE_OPEN_FOR_FREE_SPACE_QUERY = 0x800000;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbTransportPool.java

         * See also the <tt>jcifs.smb.client.logonShare</tt> property.
         * 
         * @param dc
         * @param tc
         * @throws CIFSException
         * @deprecated functionality is broken and will be removed at some point,
         *             use actual Active Directory authentication instead
         */
        @Deprecated
        void logon ( CIFSContext tc, Address dc ) throws CIFSException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/Encdec.java

        }
    
    
        public static int enc_floatbe ( float f, byte[] dst, int di ) {
            return enc_uint32be(Float.floatToIntBits(f), dst, di);
        }
    
    
        /*
         * Decode floating point numbers
         */
    
        public static float dec_floatle ( byte[] src, int si ) {
            return Float.intBitsToFloat(dec_uint32le(src, si));
        }
    
    
        public static float dec_floatbe ( byte[] src, int si ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NbtAddress.java

         * A B node only broadcasts name queries. This is the default if a
         * nameserver such as WINS or Samba is not specified.
         */
    
        public static final int B_NODE = 0;
    
        /**
         * A Point-to-Point node, or P node, unicasts queries to a nameserver
         * only. Natrually the <code>jcifs.netbios.nameserver</code> property must
         * be set.
         */
    
        public static final int P_NODE = 1;
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                if ( this.andxOffset == 0 ) { /* Snap server workaround */
                    this.andxCommand = (byte) 0xFF;
                }
    
                /*
                 * no point in calling readParameterWordsWireFormat if there are no more
                 * parameter words. besides, win98 doesn't return "OptionalSupport" field
                 */
    
                if ( this.wordCount > 2 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/SessionTest.java

        }
    
    
        @Test
        public void logonUserNoDomain () throws IOException {
            Assume.assumeTrue(getTestDomain().equalsIgnoreCase(getTestUserDomain()));
            // without a domain name, at this point we do not resolve the domain DFS roots
            Assume.assumeTrue(getProperties().get("test.share.dfsroot.url") == null);
            CIFSContext ctx = getContext();
            try ( SmbResource f = new SmbFile(
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
Back to top