Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for hl_cache (0.29 sec)

  1. src/main/webapp/WEB-INF/view/cache.hbs

    <base href="{{url_link}}">
    <div style="border:1px solid #999;margin:5px -1px;padding:0;">
    <div style="color:#000;background:#ddd;border:1px solid #666;margin:10px 15px;padding:5px;text-align:left;">{{cache_msg}}</div>
    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/orig/view/cache.hbs

    <base href="{{url_link}}">
    <div style="border:1px solid #999;margin:5px -1px;padding:0;">
    <div style="color:#000;background:#ddd;border:1px solid #666;margin:10px 15px;padding:5px;text-align:left;">{{cache_msg}}</div>
    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/xla_platform_info_test.cc

          ->tf_xla_persistent_cache_directory = "/tmp/xla_cache";
      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_persistent_cache_device_types = "GPU,CPU";
      DeviceType device_gpu = DeviceType(DEVICE_GPU);
      EXPECT_EQ(GetPersistentCacheDirectory(device_gpu), "/tmp/xla_cache");
      DeviceType device_cpu = DeviceType(DEVICE_CPU);
      EXPECT_EQ(GetPersistentCacheDirectory(device_cpu), "/tmp/xla_cache");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/fs_resource_analyzer.go

    func (s *fsResourceAnalyzer) updateCachedPodVolumeStats() {
    	oldCache := s.cachedVolumeStats.Load().(statCache)
    	newCache := make(statCache)
    
    	// Copy existing entries to new map, creating/starting new entries for pods missing from the cache
    	for _, pod := range s.statsProvider.GetPods() {
    		if value, found := oldCache[pod.GetUID()]; !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.has_cache" class="col-sm-3 text-sm-right col-form-label">has_cache</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.has_cache"/>
                                            <la:text styleId="doc.has_cache" property="doc.has_cache" styleClass="form-control"/>
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentCache.java

     */
    public interface LocalComponentCache {
    
        /**
         * A cache that does not perform caching and always executes the provided factory.
         */
        LocalComponentCache NO_CACHE = (project, factory) -> factory.apply(project);
    
        /**
         * Loads cached dependency resolution metadata for the given project, if available,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top