Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for xterm (0.17 sec)

  1. ci/official/containers/linux_arm64/devel.bashrc

    # Do not print anything if this is not being used interactively
    [ -z "$PS1" ] && return
    
    # Set up attractive prompt
    export PS1="\[\e[31m\]tf-docker\[\e[m\] \[\e[33m\]\w\[\e[m\] > "
    export TERM=xterm-256color
    alias grep="grep --color=auto"
    alias ls="ls --color=auto"
    # Fix nvidia-docker
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 988 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
        public UnicodeString(boolean zterm) {
            this.zterm = zterm;
        }
        public UnicodeString(rpc.unicode_string rus, boolean zterm) {
            this.length = rus.length;
            this.maximum_length = rus.maximum_length;
            this.buffer = rus.buffer;
            this.zterm = zterm;
        }
    
        public UnicodeString(String str, boolean zterm) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/UnicodeString.java

    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
    
        /**
         * 
         * @param zterm
         *            whether the string should be zero terminated
         */
        public UnicodeString ( boolean zterm ) {
            this.zterm = zterm;
        }
    
    
        /**
         * 
         * @param rus
         *            wrapped string
         * @param zterm
         *            whether the string should be zero terminated
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedQuery.java

            this.queries = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
        }
    
        public void setTerm(String value) {
            registerModifiedProperty("term");
            this.term = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedContent.java

            this.sortOrder = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
        }
    
        public void setTerm(String value) {
            registerModifiedProperty("term");
            this.term = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

                if (queries != null) {
                    return queries;
                }
            }
            return StringUtil.EMPTY_STRINGS;
        }
    
        private String toLowerCase(final String term) {
            return term != null ? term.toLowerCase(Locale.ROOT) : term;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/help.jsp

    	</dd>
    	<dt>Boost</dt>
    	<dd>
    		To boost a term use the "^" symbol with a boost factor (a number) at
    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    		<pre>Fess~0.5</pre>
    	</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)
  8. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

                return contentList.toArray(new String[contentList.size()]);
            }
            return StringUtil.EMPTY_STRINGS;
        }
    
        private String toLowerCase(final String term) {
            return term != null ? term.toLowerCase(Locale.ROOT) : term;
        }
    
        public void setRegexPrefix(final String regexPrefix) {
            this.regexPrefix = regexPrefix;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsKeyMatch.java

            this.query = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
        }
    
        public void setTerm(String value) {
            registerModifiedProperty("term");
            this.term = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent.jsp

                                            <div class="col-sm-10">
                                                <la:text styleId="term" property="term" styleClass="form-control"/>
                                            </div>
                                        </div>
                                        <div class="form-group row">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 7.4K bytes
    - Viewed (0)
Back to top