Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 35 (0.25 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

            (byte) 0, (byte)57, (byte)49, (byte)41, (byte)33, (byte)25, (byte)17,
            (byte) 9, (byte) 1, (byte)58, (byte)50, (byte)42, (byte)34, (byte)26,
            (byte)18, (byte)10, (byte) 2, (byte)59, (byte)51, (byte)43, (byte)35,
            (byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14,
            (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

            request.setParameter("geo.location.1.point", "34,150");
            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                              /* inch forward 1 byte and try again */
                for (int i = 0; i < 35; i++) {
                    sbuf[i] = sbuf[i + 1];
                }
                int b;
                if ((b = in.read()) == -1) return null;
                sbuf[35] = (byte)b;
            }
    
            key.mid = Encdec.dec_uint16le( sbuf, 34 ) & 0xFFFF;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/adminlte.min.css.map

    &::-webkit-slider-thumb {\n      background-color: $color;\n\n      &:active {\n        background-color: lighten($color, 35%);\n      }\n    }\n\n    &::-moz-range-thumb {\n      background-color: $color;\n\n      &:active {\n        background-color: lighten($color, 35%);\n      }\n    }\n\n    &::-ms-thumb {\n      background-color: $color;\n\n      &:active {\n        background-color: lighten($color, 35%);\n      }\n    }\n  }\n}\n","//\n// Component: Progress Bar\n//\n\n//General CSS\n.progress {\n  @include...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 2M bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                for ( int i = 0; i < 35; i++ ) {
                    log.warn("Possibly out of phase, trying to resync " + Hexdump.toHexString(this.sbuf, 0, 16));
                    this.sbuf[ i ] = this.sbuf[ i + 1 ];
                }
                int b;
                if ( ( b = this.in.read() ) == -1 )
                    return null;
                this.sbuf[ 35 ] = (byte) b;
            }
    
            /*
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top