Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for hl_cache (0.2 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                if (queries != null && queries.length > 0) {
                    doc.put(HL_CACHE, replaceHighlightQueries(cache, queries));
                } else {
                    doc.put(HL_CACHE, cache);
                }
            } else {
                doc.put(fessConfig.getIndexFieldCache(), StringUtil.EMPTY);
                doc.put(HL_CACHE, StringUtil.EMPTY);
            }
    
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    			}
    			activeLifeCycle = f.oldCache.Info.lifeCycle
    		}
    		// If there are replication rules for the prefix.
    		var replicationCfg replicationConfig
    		if !f.oldCache.Info.replication.Empty() && f.oldCache.Info.replication.Config.HasActiveRules(prefix, true) {
    			replicationCfg = f.oldCache.Info.replication
    		}
    
    		if f.weSleep() {
    			scannerSleeper.Sleep(ctx, dataScannerSleepPerFolder)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. cmd/erasure.go

    		return nil
    	}
    
    	// Load bucket totals
    	oldCache := dataUsageCache{}
    	if err := oldCache.load(ctx, er, dataUsageCacheName); err != nil {
    		return err
    	}
    
    	// New cache..
    	cache := dataUsageCache{
    		Info: dataUsageCacheInfo{
    			Name:      dataUsageRoot,
    			NextCycle: oldCache.Info.NextCycle,
    		},
    		Cache: make(map[string]dataUsageEntry, len(oldCache.Cache)),
    	}
    
    	// Put all buckets into channel.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler_test.cc

      EXPECT_TRUE(compilation_result == nullptr);
      EXPECT_TRUE(xla_executable == nullptr);
    
      // Check if an appropriate entry is made in xla_cache.
      auto xla_cache = xla_device_compiler_->cache();
      TF_ASSERT_OK_AND_ASSIGN(auto signature, Signature::Build(fn, args));
    
      auto cache_value = xla_cache->Lookup(signature);
      EXPECT_TRUE(cache_value);
      EXPECT_TRUE(cache_value->compile_state != DeviceCompileState::kUncompiled);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

        }
    
        private
        class VintageModelProvider : ServiceRegistrationProvider {
            @Provides
            fun createLocalComponentCache(): LocalComponentCache = LocalComponentCache.NO_CACHE
        }
    
        private
        class ConfigurationCacheBuildTreeProvider : ServiceRegistrationProvider {
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/cmd/go/main.go

    		run.CmdRun,
    		telemetrycmd.CmdTelemetry,
    		test.CmdTest,
    		tool.CmdTool,
    		version.CmdVersion,
    		vet.CmdVet,
    
    		help.HelpBuildConstraint,
    		help.HelpBuildmode,
    		help.HelpC,
    		help.HelpCache,
    		help.HelpEnvironment,
    		help.HelpFileType,
    		modload.HelpGoMod,
    		help.HelpGopath,
    		modfetch.HelpGoproxy,
    		help.HelpImportPath,
    		modload.HelpModules,
    		modfetch.HelpModuleAuth,
    		help.HelpPackages,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    index.field.url=url
    index.field.doc_id=doc_id
    index.field.id=_id
    index.field.version=_version
    index.field.seq_no=_seq_no
    index.field.primary_term=_primary_term
    index.field.lang=lang
    index.field.has_cache=has_cache
    index.field.last_modified=last_modified
    index.field.anchor=anchor
    index.field.segment=segment
    index.field.role=role
    index.field.boost=boost
    index.field.created=created
    index.field.timestamp=timestamp
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    this._peek(e,this.cache);if(this.oldCache.has(e))return this._peek(e,this.oldCache)}delete(e){let t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");let t=[...this._entriesAscending()],r=t.length-e;r<0?(this.cache=new Map(t),this.oldCache=new Map,this._size=t.length):(r>0&&this._emitEvictions(t.slice(0,r)),this.oldCache=new Map(t.slice(r)),this.cache=new...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. src/cmd/go/internal/help/helpdoc.go

    On AIX, when linking a C program that uses a Go archive built with
    -buildmode=c-archive, you must pass -Wl,-bnoobjreorder to the C compiler.
    `,
    }
    
    var HelpCache = &base.Command{
    	UsageLine: "cache",
    	Short:     "build and test caching",
    	Long: `
    The go command caches build outputs for reuse in future builds.
    The default location for cache data is a subdirectory named go-build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. lang */
        String INDEX_FIELD_LANG = "index.field.lang";
    
        /** The key of the configuration. e.g. has_cache */
        String INDEX_FIELD_has_cache = "index.field.has_cache";
    
        /** The key of the configuration. e.g. last_modified */
        String INDEX_FIELD_last_modified = "index.field.last_modified";
    
        /** The key of the configuration. e.g. anchor */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top