Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for isSupported (0.35 sec)

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

                // only use token if the optimistic mechanism is supported
                if ( this.mechContext.isSupported(prefMech) ) {
                    inputToken = tinit.getMechanismToken();
                }
                else {
                    ASN1ObjectIdentifier found = null;
                    for ( ASN1ObjectIdentifier mech : rm ) {
                        if ( this.mechContext.isSupported(mech) ) {
                            found = mech;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/clipboard.min.js

    e=s("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return s("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),o}();function...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat May 28 04:16:16 GMT 2022
    - 10.5K bytes
    - Viewed (2)
  3. src/main/java/jcifs/smb/Kerb5Context.java

            this.gssContext.requestCredDeleg(true);
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isSupported(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            return KRB5_MECH_OID.equals(mechanism) || KRB5_MS_MECH_OID.equals(mechanism);
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SSPContext.java

    
        /**
         * @throws CIFSException
         */
        void dispose () throws CIFSException;
    
    
        /**
         * @param mechanism
         * @return whether the specified mechanism is supported
         */
        boolean isSupported ( ASN1ObjectIdentifier mechanism );
    
    
        /**
         * @param selectedMech
         * @return whether the specified mechanism is preferred
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmContext.java

        public int getFlags () {
            return 0;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isSupported(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            return NTLMSSP_OID.equals(mechanism);
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

        /**
         * 
         */
        private static final long serialVersionUID = -5576981906065713710L;
    
    
        /**
         * 
         */
        public SmbUnsupportedOperationException () {
            super("Operation is not supported with the negotiated capabilities");
        }
    
    
        /**
         * 
         * @param msg
         */
        public SmbUnsupportedOperationException ( String msg ) {
            super(msg);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

            }
            if (StringUtil.isNotBlank(keyMatchPager.query)) {
                cb.query().setQuery_Wildcard(wrapQuery(keyMatchPager.query));
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_Term_Asc();
    
            // search
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

            if (roleTypePager.id != null) {
                cb.query().docMeta().setId_Equal(roleTypePager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_SortOrder_Asc();
            cb.query().addOrderBy_Name_Asc();
            // search
    
        }
    
        public List<RoleType> getRoleTypeList() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/help.jsp

    		text of a single document.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>Wildcard</dt>
    	<dd>
    		single and multiple character wildcard searches within single terms
    		are supported. "?" symbol is a single character wildcard search, and
    		"*" is a multiple character wildcard search.
    		<pre>Fess*</pre>
    		or
    		<pre>Fe?s</pre>
    	</dd>
    	<dt>Range</dt>
    	<dd>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_ru.properties

    errors.invalid_query_parse_error=The given query is invalid.
    errors.invalid_query_sort_value=The given sort ({0}) is invalid.
    errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
    errors.invalid_query_unsupported_sort_order=The given sort order ({0}) is not supported.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    errors.crud_failed_to_create_instance=Failed to create a new data.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
Back to top