Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for isAnonymous (0.19 sec)

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

         * @see jcifs.smb.SmbResourceLocatorInternal#shouldForceSigning()
         */
        @Override
        public boolean shouldForceSigning() {
            return this.ctx.getConfig().isIpcSigningEnforced() && !this.ctx.getCredentials().isAnonymous() && isIPC();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbResourceLocator#isIPC()
         */
        @Override
        public boolean isIPC() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

                                final SmbTransportImpl transport = tf.getTransportPool()
                                        .getSmbTransport(tf, dr.getServer(), 0, false,
                                                !tf.getCredentials().isAnonymous() && tf.getConfig().isSigningEnabled()
                                                        && tf.getConfig().isIpcSigningEnforced())
                                        .unwrap(SmbTransportImpl.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * <code>domain\\username</code>. This is equivalent to <code>getName()</code>.
         */
        @Override
        public String toString() {
            return getName();
        }
    
        @Override
        public boolean isAnonymous() {
            return this.type == AuthenticationType.NULL;
        }
    
        @Override
        public boolean isGuest() {
            return this.type == AuthenticationType.GUEST;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java

        @Required
        public String dictId;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input terms that should be considered synonymous */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** The output synonyms that should be matched for the input terms */
        @Required
        @Size(max = 1000)
        public String outputs;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top