Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 586 for replaceOp (0.08 sec)

  1. guava/src/com/google/common/cache/RemovalListener.java

    /**
     * An object that can receive a notification when an entry is removed from a cache. The removal
     * resulting in notification could have occurred to an entry being manually removed or replaced, or
     * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DuplicateHost.java

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public String convert(final String url) {
            final String targetStr = getDuplicateHostName().replace(".", "\\.");
            return url.replaceFirst("://" + targetStr + "$", "://" + getRegularName()).replaceFirst("://" + targetStr + "([:/])",
                    "://" + getRegularName() + "$1");
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/LocaleUtil.java

        /**
         * {@link Locale}を返します。
         *
         * @param localeStr
         *            ロケールを表す文字列
         * @return {@link Locale}
         */
        public static Locale getLocale(final String localeStr) {
            // TODO replace with Fess
            Locale locale = LocaleUtil.getDefault();
            if (localeStr != null) {
                final int index = localeStr.indexOf('_');
                if (index < 0) {
                    locale = new Locale(localeStr);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java

    public abstract class RankFusionSearcher {
        protected String name;
    
        public String getName() {
            if (name == null) {
                name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH);
            }
            return name;
        }
    
        protected abstract SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. ci/official/utilities/setup_docker.sh

      WORKING_DIR="$TFCI_GIT_DIR"
      if [[ `uname -s | grep -P '^MSYS_NT'` ]]; then
        env_file=$(cygpath -m $env_file)
        # Host dirs can only be mapped to an existing drive inside the container, so
        # T:\ is replaced with C:\.
        _TFCI_OUTPUT_DIR_WIN=$(replace_drive_letter_with_c "$TFCI_OUTPUT_DIR")
        sed -iE 's|^TFCI_OUTPUT_DIR=.*|TFCI_OUTPUT_DIR='"$_TFCI_OUTPUT_DIR_WIN"'|g' $env_file
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Aug 09 16:05:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. RELEASE.md

        *   `tf.contrib.distributions.MultivariateNormalFull` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`.
        *   `tf.contrib.distributions.MultivariateNormalCholesky` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`
        *   `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusStDev`
            replaced by
            `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusScale`
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.unc = '\\' + name.replace('/', '\\') + ( trailingSlash ? "\\" : "" );
                    this.canon = context.getURLPath() + name + ( trailingSlash ? "/" : "" );
                    this.share = shr;
                }
                else {
                    this.unc = uncPath + name.replace('/', '\\') + ( trailingSlash ? "\\" : "" );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  8. association.go

    		case schema.HasOne, schema.BelongsTo:
    			if len(values) > 0 {
    				association.Error = association.Replace(values...)
    			}
    		default:
    			association.saveAssociation( /*clear*/ false, values...)
    		}
    	}
    
    	return association.Error
    }
    
    func (association *Association) Replace(values ...interface{}) error {
    	if association.Error == nil {
    		reflectValue := association.DB.Statement.ReflectValue
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. MIGRATION.md

    [Fess Site Search](https://github.com/codelibs/fess-site-search) provides [scripts](https://fss-generator.codelibs.org/docs/manual) (see below) to help you migrate from GSS/CSE.
    Using the, you can replace existing GSS/CSE JavaScript codes with:
    
    ```
    <script>
      (function() {
        var fess = document.createElement('script');
        fess.type = 'text/javascript';
        fess.async = true;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final boolean isHttpUrl = url.startsWith("http:") || url.startsWith("https:");
    
            if (isSmbUrl) {
                url = url.replace("smb:", "file:");
                url = url.replace("smb1:", "file:");
            }
    
            if (isHttpUrl && isSmbOrFtpUrl) {
                //  smb/ftp->http
                // encode
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top