Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for LIKE (0.25 sec)

  1. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Chrome() {
            getMockRequest().addHeader("user-agent",
                    "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. dbflute_fess/_readme.txt

    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    Generated structures (directories and classes) are like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    allcommon : classes bridging to DBFlute Runtime
    bsbhv     : base behaviors
    bsentity  : base entities
    cbean     : condition-beans (both base and extended)
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
  3. dbflute_fess/playsql/_readme.txt

    The "data" directory is for data loading like this:
    /- - - - - - - - - - - - - - - - - - - -
    playsql
      |-data
         |-common
         |  |-xls
         |     |-10-master.xls
         |     |-defaultValueMap.dataprop
         |-ut
            |-xls
               |-20-member.xls  
               |-30-product.xls  
               |-defaultValueMap.dataprop
    - - - - - - - - - -/
    
    The format of a xls file is like this:
    /- - - - - - - - - - - - - - - - - - - -
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.3K bytes
    - Viewed (0)
  4. src/packaging/common/packaging.properties

    # Common properties for building ZIP,GZ,RPM and DEB packages
    #
    # Properties defined here can be overridden with specific settings,
    # like in rpm/packaging.properties and deb/packaging.properties.
    
    # Environment file
    packaging.env.file=
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbPipeResource.java

         */
    
        public static final int PIPE_TYPE_RDWR = SmbConstants.O_RDWR;
    
        /**
         * Pipe operations should behave like the <code>CallNamedPipe</code> Win32 Named Pipe function.
         */
    
        public static final int PIPE_TYPE_CALL = 0x0100;
    
        /**
         * Pipe operations should behave like the <code>TransactNamedPipe</code> Win32 Named Pipe function.
         */
    
        public static final int PIPE_TYPE_TRANSACT = 0x0200;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/NameServiceClient.java

        NetbiosAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException;
    
    
        /**
         * Determines the address of a host given it's host name. The name can be a NetBIOS name like
         * "freto" or an IP address like "192.168.1.15". It cannot be a DNS name;
         * the analygous {@link jcifs.netbios.UniAddress} or {@link java.net.InetAddress}
         * <code>getByName</code> methods can be used for that.
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
  7. src/packaging/rpm/init.d/fess

        if [ -n "$pidfile" ] && [ ! -e "$pidfile" ]; then
            touch "$pidfile" && chown "$FESS_USER":"$FESS_GROUP" "$pidfile"
        fi
    
        echo -n $"Starting $prog: "
        # if not running, start it up here, usually something like "daemon $exec"
        daemon --user $FESS_USER --pidfile="$pidfile" $exec -d
        retval=$?
        pid=`ps aux | grep "^${FESS_USER}" | grep "${PROC_NAME}" | sed 's/[\t ]\+/\t/g' | cut -f2`
        if [ -n "$pid" ]; then
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         */
        @Override
        public boolean verifySignature ( byte[] buffer, int i, int size ) {
            // observed too that signatures on error responses are sometimes wrong??
            // Looks like the failure case also is just reflecting back the signature we sent
    
            // with SMB3's negotiation validation it's no longer possible to ignore this (on the validation response)
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmUtil.java

        };
    
    
        /*
         * Accepts key multiple of 7
         * Returns enc multiple of 8
         * Multiple is the same like: 21 byte key gives 24 byte result
         */
        static void E ( byte[] key, byte[] data, byte[] e ) throws ShortBufferException {
            byte[] key7 = new byte[7];
            byte[] e8 = new byte[8];
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 9.7K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/basicInfoMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isTableNameCamelCase: (NotRequired - Default false)
        #  Is the table name camel case?
        #  Basically you don't need this if the style of table name is like 'FOO_STATUS'.
        #    [true]
        #      The table name is camel case.
        #      e.g. If the table name is 'OrderDetail', the class name is 'OrderDetail'.
        #
        #    [false]
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
Back to top