Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for Look (0.14 sec)

  1. dbflute_fess/log/_readme.txt

    Directory for log files of DBFlute tasks
    
    If your execution of DBFlute task fails,
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 126 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

            if ( host.indexOf('.') < 0 && host.toUpperCase(Locale.ROOT).equals(host) ) {
                // this is not too good, probably should better pass the address and check that it is a netbios one.
                // While we could look up the domain controller/KDC we cannot really make the java kerberos implementation
                // use a KDC of our choice.
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

            this.addrEntry = new NbtAddress[this.rDataLength / 6];
            end = srcIndex + this.rDataLength;
            /*
             * Apparently readRDataWireFormat can return 0 if resultCode != 0 in
             * which case this will look indefinitely. Putting this else clause around
             * the loop might fix that. But I would need to see a capture to confirm.
             * if (resultCode != 0) {
             * srcIndex += rDataLength;
             * } else {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                    if ( ch == '[' ) {
                        String server = str.substring(mark, si).trim();
                        if ( server.length() == 0 ) {
                            // this can also be a v6 address within brackets, look ahead required
                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
                            if ( nexts >= 0 && nexte >= 0 && nexte == nexts - 1 ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/popper.min.js.map

    supported,\n  //  we use `translate3d` to apply the position to the popper we\n  // automatically use the supported prefixed version if needed\n  const prefixedProperty = getSupportedPropertyName('transform');\n\n  // now, let's make a step back and look at this code closely (wtf?)\n  // If the content of the popper grows once it's been positioned, it\n  // may happen that the popper gets misplaced because of the new content\n  // overflowing its reference element\n  // To avoid this problem, we provide...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  6. src/packaging/deb/init.d/fess

    # Look for the right JVM to use
    for jdir in $JDK_DIRS; do
        if [ -r "$jdir/bin/java" -a -z "${JAVA_HOME}" ]; then
            JAVA_HOME="$jdir"
        fi
    done
    export JAVA_HOME
    
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsPagingResultBean.java

            this.builder = builder;
        }
    
        public String getQueryDsl() {
            return builder.toString();
        }
    
        public long getTook() {
            return took;
        }
    
        public void setTook(long took) {
            this.took = took;
        }
    
        public int getTotalShards() {
            return totalShards;
        }
    
        public void setTotalShards(int totalShards) {
            this.totalShards = totalShards;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        }
    
        public static OptionalEntity<StopwordsItem> createStopwordsItem(final CreateForm form, final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String newInput = form.input;
                validateStopwordsString(newInput, "input", hook);
                entity.setNewInput(newInput);
                return entity;
            });
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/osdd/OsddAction.java

        //
    
        // ===================================================================================
        //                                                                               Hook
        //                                                                              ======
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.logic;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.dbflute.hook.AccessContext;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.db.dbflute.accesscontext.AccessContextResource;
    
    public class AccessContextLogic {
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top