Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Boolean (1.38 sec)

  1. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
                catch ( CIFSException e ) {
                    throw new SmbException("Logon share connection failed", e);
                }
            }
        }
    
    
        boolean treeDisconnect ( boolean inError, boolean inUse ) {
            boolean wasInUse = false;
            try ( SmbSessionImpl sess = getSession();
                  SmbTransportImpl transport = sess.getTransport() ) {
                synchronized ( transport ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean smb2OnlyNegotiation = false;
        protected boolean port139FailoverEnabled = false;
        protected boolean useNTSmbs = true;
        protected boolean useLargeReadWrite = true;
        protected int lanmanCompatibility = 3;
        protected boolean allowNTLMFallback = true;
        protected boolean useRawNTLM = false;
        protected boolean disableSpnegoIntegrity = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenInit.java

        }
    
    
        public void setContextFlags ( int contextFlags ) {
            this.contextFlags = contextFlags;
        }
    
    
        public boolean getContextFlag ( int flag ) {
            return ( getContextFlags() & flag ) == flag;
        }
    
    
        public void setContextFlag ( int flag, boolean value ) {
            setContextFlags(value ? ( getContextFlags() | flag ) : ( getContextFlags() & ( 0xffffffff ^ flag ) ));
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. pom.xml

    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isSendNTLMTargetName()</method>
    						</difference>
    
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isAllowGuestFallback()</method>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
    
        @Override
        public UniAddress getByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException {
            return getAllByName(hostname, possibleNTDomainOrWorkgroup)[ 0 ];
        }
    
    
        @Override
        public UniAddress[] getAllByName ( String hostname, boolean possibleNTDomainOrWorkgroup ) throws UnknownHostException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/Strings.java

        private static final Charset UNI_ENCODING = Charset.forName("UTF-16LE");
        private static final Charset ASCII_ENCODING = Charset.forName("US-ASCII");
    
        private static final boolean MASK_SECRET_VALUE = System.getProperty("jcifs.maskSecretValue", "true") == "true";
        private static final String SECRET_PATTERN = "^(smb.*:).*(@.*)$";
        private static final String SECRET_MASK_REPLACE = "$1******$2";
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
        }
    
    
        protected synchronized void doDisconnect ( boolean hard ) throws IOException {
            doDisconnect(hard, false);
        }
    
    
        @Override
        protected synchronized boolean doDisconnect ( boolean hard, boolean inUse ) throws IOException {
            ListIterator<SmbSessionImpl> iter = this.sessions.listIterator();
            boolean wasInUse = false;
            long l = getUsageCount();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

            if( isOpen() ) {
                return;
            }
            fid = open0( flags, access, attrs, options );
            opened = true;
            tree_num = tree.tree_num;
        }
        boolean isOpen() {
            boolean ans = opened && isConnected() && tree_num == tree.tree_num;
            return ans;
        }
        void close( int f, long lastWriteTime ) throws SmbException {
    
            if( log.level >= 3 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/PropertyConfiguration.java

            if ( minVer != null || maxVer != null ) {
                initProtocolVersions(minVer, maxVer);
            }
            else {
                boolean smb2 = Config.getBoolean(p, "jcifs.smb.client.enableSMB2", true);
                boolean nosmb1 = Config.getBoolean(p, "jcifs.smb.client.disableSMB1", false);
                initProtocolVersions(nosmb1 ? DialectVersion.SMB202 : null, !smb2 ? DialectVersion.SMB1 : null);
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top