Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,932 for statx (0.11 sec)

  1. cmd/http-stats.go

    		return 0
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    	val, ok := stats.apiStats[api]
    	if ok {
    		return val
    	}
    
    	return 0
    }
    
    // Load returns the recorded stats.
    func (stats *HTTPAPIStats) Load(toLower bool) map[string]int {
    	if stats == nil {
    		return map[string]int{}
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

            this.contentTransformer = contentTransformer;
        }
    
        /**
         * Returns the state of the "add default entities" flag.
         *
         * @return boolean
         */
        public boolean getAddDefaultEntities() {
            return addDefaultEntities;
        } //-- boolean getAddDefaultEntities()
    
        /**
         * Sets the state of the "add default entities" flag.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. src/mdo/writer-stax.vm

         * @throws IOException IOException if any
         */
        public void write(Writer writer, ${root.name} ${rootLcapName}) throws IOException, XMLStreamException {
            XMLOutputFactory factory = new com.ctc.wstx.stax.WstxOutputFactory();
            factory.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, false);
            factory.setProperty(com.ctc.wstx.api.WstxOutputProperties.P_USE_DOUBLE_QUOTES_IN_XML_DECL, true);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                if (workerCount > 0) {
                    LOGGER.lifecycle("average select time: " + format(stats -> stats.totalSelectTime));
                    LOGGER.lifecycle("average execute time: " + format(stats -> stats.totalExecuteTime));
                    LOGGER.lifecycle("average finish time: " + format(stats -> stats.totalMarkFinishedTime));
                }
                completedWorkers.clear();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/helper.go

    }
    
    func addContainerUsage(stat *statsapi.FsStats, container *statsapi.ContainerStats, isCRIStatsProvider bool) {
    	if rootFs := container.Rootfs; rootFs != nil {
    		stat.Time = maxUpdateTime(&stat.Time, &rootFs.Time)
    		stat.InodesUsed = addUsage(stat.InodesUsed, rootFs.InodesUsed)
    		stat.UsedBytes = addUsage(stat.UsedBytes, rootFs.UsedBytes)
    		if logs := container.Logs; logs != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.api.internal.changedetection.state.PropertiesFileFilter;
    import org.gradle.api.internal.changedetection.state.ResourceEntryFilter;
    import org.gradle.api.internal.changedetection.state.ResourceFilter;
    import org.gradle.api.internal.changedetection.state.ResourceSnapshotterCacheService;
    import org.gradle.api.internal.changedetection.state.SplitFileHasher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter.go

    func buildRedisFilter(statPrefix, clusterName string) *listener.Filter {
    	redisProxy := &redis.RedisProxy{
    		LatencyInMicros: true,       // redis latency stats are captured in micro seconds which is typically the case.
    		StatPrefix:      statPrefix, // redis stats are prefixed with redis.<statPrefix> by Envoy
    		Settings: &redis.RedisProxy_ConnPoolSettings{
    			OpTimeout: durationpb.New(redisOpTimeout),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    	// Necessarily overlaps with other stats.
    	TotalTime time.Duration
    
    	// Total time the goroutine spent in certain ranges; may overlap
    	// with other stats.
    	RangeTime map[string]time.Duration
    }
    
    func (s GoroutineExecStats) NonOverlappingStats() map[string]time.Duration {
    	stats := map[string]time.Duration{
    		"Execution time":         s.ExecTime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        for (const string& source : grad_it->getSecond()) {
          auto g = func.front().addArgument(t, func.getLoc());
          (*stats)[g].accumulate_on_write = true;
          grads_map[source] = g;
        }
        auto& stat = (*stats)[arg];
        stat.accumulate_on_write = ta_accumulate_on_write(argnum);
        stat.grads = std::move(grads_map);
      }
      UpdateFuncType(func);
    }
    
    LogicalResult DecomposeTensorArrayOps(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        if (TF_GetCode(status) == TF_OK) {
          stats->is_directory = true;
          stats->length = 0;
          stats->mtime_nsec = 0;
        }
        return;
      }
      if (IsDirectory(filesystem, path, status)) {
        stats->is_directory = true;
        stats->length = 0;
        stats->mtime_nsec = 0;
        return TF_SetStatus(status, TF_OK, "");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
Back to top