Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for mathml (0.23 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

    
        /**
         * @param config
         * @param fileId
         */
        public Smb2QueryInfoRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_QUERY_INFO);
            this.outputBufferLength = ( Math.min(config.getMaximumBufferSize(),  config.getListSize()) - Smb2QueryInfoResponse.OVERHEAD ) & ~0x7;
            this.fileId = fileId;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 10:41:31 GMT 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        // open function
        static final int OPEN_FUNCTION_FAIL_IF_EXISTS      = 0x0000;
        static final int OPEN_FUNCTION_OVERWRITE_IF_EXISTS = 0x0020;
    
        static final int PID = (int)( Math.random() * 65536d );
    
        static final int SECURITY_SHARE = 0x00;
        static final int SECURITY_USER  = 0x01;
    
        static final int CMD_OFFSET        = 4;
        static final int ERROR_CODE_OFFSET = 5;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

    import static org.hamcrest.CoreMatchers.not;
    import static org.hamcrest.CoreMatchers.notNullValue;
    import static org.hamcrest.CoreMatchers.nullValue;
    import static org.junit.Assert.assertThat;
    
    import java.math.BigDecimal;
    import java.util.Date;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.FieldDesc;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

                throw new CIFSException(
                    "The default OEM encoding " + SmbConstants.DEFAULT_OEM_ENCODING + " does not appear to be supported by this JRE.");
            }
    
            this.localPid = (int) ( Math.random() * 65536d );
            this.localTimeZone = TimeZone.getDefault();
            this.random = new SecureRandom();
    
            if ( this.machineId == null ) {
                byte[] mid = new byte[32];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                localHostname = "JCIFS" +
                        ( addr[2] & 0xFF ) + "_" +
                        ( addr[3] & 0xFF ) + "_" +
                        Hexdump.toHexString( (int)( Math.random() * (double)0xFF ), 2 );
            }
    
            /* Create an NbtAddress for the local interface with
             * the name deduced above possibly with scope applied and
             * cache it forever.
             */
    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)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    KAAQkW,EAAS,KAGzBhC,GAAU,GAGHhI,EAAQ5C,EAAaiD,KAAM4L,MACjCjE,EAAUhI,EAAM0B,QAChBsI,EAAOlW,KAAM,CACZuG,MAAO2N,EAGPnT,KAAMmL,EAAO,GAAI5G,QAAS8D,EAAO,OAElC+O,EAAQA,EAAMzY,MAAOwU,EAAQxR,SAIhBqE,EAAK8I,SACX3D,EAAQxC,EAAW3I,GAAOwL,KAAM4L,KAAgBC,EAAYrX,MAChEmL,EAAQkM,EAAYrX,GAAQmL,MAC9BgI,EAAUhI,EAAM0B,QAChBsI,EAAOlW,KAAM,CACZuG,MAAO2N,EACPnT,KAAMA,EACNqF,QAAS8F,IAEViM,EAAQA,EAAMzY,MAAOwU,EAAQxR,SAI/B,IAAMwR,EACL,MAOF,OAAOgE,EACNC,EAAMzV,OACNyV,EACCrR,GAAOtB,MAAOnD,GAGd+F,EAAY/F,EAAU8J,GAASzM,MAAO,IA4Z...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

                bufDataOffset = totalParameterCount; // data comes right after data
    
                int available = maxBufferSize - parameterOffset;
                parameterCount = Math.min( totalParameterCount, available );
                available -= parameterCount;
    
                dataOffset = parameterOffset + parameterCount;
                pad1 = dataOffset % PADDING_SIZE;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/SocketInputStream.java

            if( len == 0 ) {
                return 0;
            }
            tot = 0;
    
            while( true ) {
                while( bip > 0 ) {
                    n = in.read( b, off, Math.min( len, bip ));
                    if( n == -1 ) {
                        return tot > 0 ? tot : -1;
                    }
                    tot += n;
                    off += n;
                    len -= n;
                    bip -= n;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

                    cci = Math.max(cci, createContextStart + nameOffset + nameLength);
    
                    CreateContextResponse cc = createContext(nameBytes);
                    if ( cc != null ) {
                        cc.decode(buffer, createContextStart + dataOffset, dataLength);
                        contexts.add(cc);
                    }
    
                    cci = Math.max(cci, createContextStart + dataOffset + dataLength);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  10. plugin.xml

    				<include name="dataformat/commons-codec-*" />
    				<include name="dataformat/commons-collections4-*" />
    				<include name="dataformat/commons-compress-*" />
    				<include name="dataformat/commons-math3-*" />
    				<include name="dataformat/curvesapi-*" />
    				<include name="dataformat/orangesignal-csv-*" />
    				<include name="dataformat/poi-*" />
    				<include name="dataformat/SparseBitSet-*" />
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
Back to top