Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Schick (0.28 sec)

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

            }
        }
    
    
        public void assertCloseTime ( long timeMs ) {
            if ( timeMs - System.currentTimeMillis() > 5 * 60 * 1000L ) {
                assertTrue("Time is not within 30s, check clocks " + new Date(timeMs), false);
            }
        }
    
    
        @Test
        public void testLastModified () throws CIFSException, MalformedURLException, UnknownHostException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

             * that chained message. Before doing so we must increment
             * the batchLevel of the andx message in case it itself is an
             * andx message and needs to perform the same check as above.
             */
    
            this.andx.batchLevel = this.batchLevel + 1;
    
            dst[ start + ANDX_COMMAND_OFFSET ] = this.andxCommand;
            dst[ start + ANDX_RESERVED_OFFSET ] = (byte) 0x00;
    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)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            response.wait(timeout);
    
                            /*
                             * JetDirect printer can respond to regular broadcast query
                             * with node status so we need to check to make sure that
                             * the record type matches the question type and if not,
                             * loop around and try again.
                             */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

        Info queryPath( String path, int infoLevel ) throws SmbException {
            connect0();
    
            if (log.level >= 3)
                log.println( "queryPath: " + path );
    
            /* normally we'd check the negotiatedCapabilities for CAP_NT_SMBS
             * however I can't seem to get a good last modified time from
             * SMB_COM_QUERY_INFORMATION so if NT_SMBs are requested
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  5. pom.xml

    			<plugin>
    				<groupId>org.codehaus.mojo</groupId>
    				<artifactId>clirr-maven-plugin</artifactId>
    				<version>2.8</version>
    				<executions>
    					<execution>
    						<id>check-compatibility</id>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    XML
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  6. src/main/java/jcifs/smb/SmbFile.java

         */
        private static boolean isWorkgroup ( SmbResource r ) {
            try {
                return r.getLocator().isWorkgroup();
            }
            catch ( CIFSException e ) {
                log.debug("Failed to check for workgroup", e);
                return false;
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.net.URLConnection#connect()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top