Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 223 for getStat (0.13 sec)

  1. tools/bug-report/pkg/processlog/processlog.go

    func Process(config *config.BugReportConfig, logStr string) (string, *Stats) {
    	if !config.TimeFilterApplied {
    		return logStr, getStats(config, logStr)
    	}
    	out := getTimeRange(logStr, config.StartTime, config.EndTime)
    	return out, getStats(config, out)
    }
    
    // getTimeRange returns the log lines that fall inside the start to end time range, inclusive.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectBackedPropertyHost.java

            if (!project.getState().hasCompleted()) {
                return "configuration of " + project.getDisplayName() + " has not completed yet";
            } else if (producer != null) {
                TaskInternal producerTask = (TaskInternal) producer.getTaskThatOwnsThisObject();
                if (producerTask != null && producerTask.getState().isConfigurable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 09 21:55:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

          boolean isDone() {
            return (getState() & (COMPLETED | CANCELLED | INTERRUPTED)) != 0;
          }
    
          /** Checks if the state is {@link #CANCELLED} or {@link #INTERRUPTED}. */
          boolean isCancelled() {
            return (getState() & (CANCELLED | INTERRUPTED)) != 0;
          }
    
          /** Checks if the state is {@link #INTERRUPTED}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaDataCompare.java

            if (local == null) {
                return false;
            }
    
            String localEtag = local.getEtag();
    
            Date localLastModified = local.getLastModified();
            if (localEtag == null && localLastModified == null) {
                return false;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/edges/ComplexDependencyNodesSet.java

        @Override
        public void onNodeComplete(Node node, Node dependency) {
            delegate.onNodeComplete(node, dependency);
        }
    
        @Override
        public Node.DependenciesState getState(Node node) {
            Node.DependenciesState state = delegate.getState(node);
            if (state != Node.DependenciesState.COMPLETE_AND_SUCCESSFUL) {
                return state;
            }
    
            for (Node dependency : orderedMustSuccessors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 20 06:27:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/metadata/ExternalResourceMetaDataCompareTest.groovy

            !unchanged
        }
    
        def configureMetadata(ExternalResourceMetaData metaData, String etag = "abc", Date lastModified = now, long contentLength = 100) {
            interaction {
                1 * metaData.getEtag() >> etag
    
                1 * metaData.getLastModified() >> lastModified
                if (lastModified != null || etag != null) {
                    1 * metaData.getContentLength() >> contentLength
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

          boolean isDone() {
            return (getState() & (COMPLETED | CANCELLED | INTERRUPTED)) != 0;
          }
    
          /** Checks if the state is {@link #CANCELLED} or {@link #INTERRUPTED}. */
          boolean isCancelled() {
            return (getState() & (CANCELLED | INTERRUPTED)) != 0;
          }
    
          /** Checks if the state is {@link #INTERRUPTED}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 09 15:17:25 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  8. hack/lib/etcd.sh

      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
      if ${port_check_command} -nat | grep "LISTEN" | grep "[\.:]${ETCD_PORT:?}" >/dev/null 2>&1; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryCache.java

            @Override
            public boolean requiresInitialization(FileLock lock) {
                if (!lock.getUnlockedCleanly()) {
                    if (lock.getState().canDetectChanges() && !lock.getState().isInInitialState()) {
                        LOGGER.warn("Invalidating {} as it was not closed cleanly.", DefaultPersistentDirectoryCache.this);
                    }
                    return true;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:20:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    // getState blocks until any prior reporters are finished with the reporter
    // state, then returns the state for manipulation.
    func (r *reporter) getState() *reporterState {
    	if r.state == nil {
    		r.state = <-r.prev
    	}
    	return r.state
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top