Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 346 of 346 for privasi (0.07 sec)

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

    import jcifs.NameServiceClient;
    import jcifs.NetbiosAddress;
    import jcifs.NetbiosName;
    
    
    /**
     * @author mbechler
     *
     */
    public class DelegatingNameServiceClient implements NameServiceClient {
    
        private NameServiceClient nscl;
    
    
        /**
         * @param nscl
         * 
         */
        public DelegatingNameServiceClient ( NameServiceClient nscl ) {
            this.nscl = nscl;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

    import jcifs.smb.SmbUnsupportedOperationException;
    
    
    /**
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class EnumTest extends BaseCIFSTest {
    
        private static final Logger log = LoggerFactory.getLogger(EnumTest.class);
    
    
        /**
         * @param name
         * @param properties
         */
        public EnumTest ( String name, Map<String, String> properties ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbNamedPipe.java

     * Named Pipes</a> for a detailed description of how to use jCIFS with
     * Win32 Named Pipe server processes.
     *
     */
    
    public class SmbNamedPipe extends SmbFile implements SmbPipeResource {
    
        private final int pipeType;
    
    
        /**
         * Open the Named Pipe resource specified by the url
         * parameter. The pipeType parameter should be at least one of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Config.java

     * {@link jcifs.context.SingletonContext#getInstance()}
     * witch is initialized using system properties.
     * 
     */
    @SuppressWarnings ( "javadoc" )
    public class Config {
    
        private static final Logger log = LoggerFactory.getLogger(Config.class);
    
    
        /**
         * This static method registers the SMB URL protocol handler which is
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SIDCacheImpl.java

    import jcifs.dcerpc.msrpc.samr;
    
    
    /**
     * Internal use only: SID resolver cache
     * 
     * @author mbechler
     * @internal
     */
    public class SIDCacheImpl implements SidResolver {
    
        private Map<SID, SID> sidCache = new HashMap<>();
    
    
        /**
         * @param baseContext
         */
        public SIDCacheImpl ( CIFSContext baseContext ) {}
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/DelegatingConfiguration.java

    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.ResolverType;
    
    
    /**
     * @author mbechler
     *
     */
    public class DelegatingConfiguration implements Configuration {
    
        private final Configuration delegate;
    
    
        /**
         * @param delegate
         *            delegate to pass all non-overridden method calls to
         * 
         */
        public DelegatingConfiguration ( Configuration delegate ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
Back to top