Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                final SmbTreeImpl t, final DfsReferralData referral, final SmbAuthException sae) throws SmbAuthException, CIFSException {
            try (SmbSessionImpl treesess = t.getSession()) {
                if (treesess.getCredentials().isAnonymous() || treesess.getCredentials().isGuest()) {
                    // refresh anonymous session or fallback to anonymous from guest login
                    try (SmbSessionInternal s =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (1)
  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