Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cs (0.16 sec)

  1. src/test/java/jcifs/tests/NamingTest.java

                Assume.assumeTrue("Charset is not supported on this VM " + oemEncoding, false);
            }
            runFilenameTest(splitString(str, 8));
        }
    
    
        private static String makeCharsetString ( Charset cs, int min, int max, int... excludes ) {
            ByteBuffer buf = ByteBuffer.allocate(128);
            Arrays.sort(excludes);
            for ( int i = 128; i < 255; i++ ) {
                int idx = Arrays.binarySearch(excludes, i);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 10:48:05 GMT 2020
    - 7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

         * @throws SmbException
         */
        private int waitForState ( SmbTransportImpl transport ) throws SmbException {
            int cs;
            while ( ( cs = this.connectionState.get() ) != 0 ) {
                if ( cs == 2 ) {
                    return cs;
                }
                if ( cs == 3 ) {
                    throw new SmbException("Disconnecting during tree connect");
                }
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
Back to top