Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for regressed (0.82 sec)

  1. internal/dsync/drwmutex.go

    			ctx, cancel := context.WithTimeout(ctx, ds.Timeouts.RefreshCall)
    			defer cancel()
    
    			refreshed, err := c.Refresh(ctx, args)
    			if err != nil {
    				ch <- refreshResult{offline: true}
    				log("dsync: Unable to call Refresh failed with %s for %#v at %s\n", err, args, c)
    			} else {
    				ch <- refreshResult{refreshed: refreshed}
    				log("dsync: Refresh returned false for %#v at %s\n", args, c)
    			}
    		}(index, c)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

        }
    
        boolean isBuildFailed() {
            return teamCityExecutions.every { it.isBuildFailed() } && currentExecutions.empty
        }
    
        boolean isRegressed() {
            return teamCityExecutions.every { it.isBuildFailed() } && !currentExecutions.empty
        }
    
        boolean isSuccessful() {
            return teamCityExecutions.every { it.isSuccessful() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget.go

    	"k8s.io/utils/clock"
    )
    
    const (
    	refreshPerSecond = 50 * time.Millisecond
    	maxBudget        = 100 * time.Millisecond
    )
    
    // timeBudget implements a budget of time that you can use and is
    // periodically being refreshed. The pattern to use it is:
    //
    //	budget := newTimeBudget(...)
    //	...
    //	timeout := budget.takeAvailable()
    //	// Now you can spend at most timeout on doing stuff
    //	...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

            if (progressedSize < 0L) {
                throw new IllegalArgumentException("progressed file size cannot be negative: " + size);
            }
            if (size >= 0 && progressedSize > size) {
                throw new IllegalArgumentException(
                        "progressed file size cannot be greater than size: " + progressedSize + " > " + size);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/controller/deployment/progress.go

    			// was successfully deployed. If the condition already exists, we ignore this update.
    			msg := fmt.Sprintf("Deployment %q has successfully progressed.", d.Name)
    			if newRS != nil {
    				msg = fmt.Sprintf("ReplicaSet %q has successfully progressed.", newRS.Name)
    			}
    			condition := util.NewDeploymentCondition(apps.DeploymentProgressing, v1.ConditionTrue, util.NewRSAvailableReason, msg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultReportGenerator.java

            executionDataProvider.getReportScenarios()
                .forEach(scenario -> {
                    if (scenario.isBuildFailed()) {
                        failureCollector.scenarioFailed();
                    } else if (scenario.isRegressed()) {
                        Set<PerformanceFlakinessDataProvider.ScenarioRegressionResult> regressionResults = scenario.getCurrentExecutions().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/serviceaccount/metrics.go

    			Name:           "legacy_tokens_total",
    			Help:           "Cumulative legacy service account tokens used",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// StaleTokensTotal is the number of stale projected tokens not refreshed on
    	// client side.
    	staleTokensTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeServiceAccountSubsystem,
    			Name:           "stale_tokens_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. internal/dsync/dsync-server_test.go

    	lockNotFound bool
    
    	// Set to true if you want peers servers to do not respond
    	responseDelay int64
    }
    
    func (l *lockServer) setRefreshReply(refreshed bool) {
    	l.mutex.Lock()
    	defer l.mutex.Unlock()
    	l.lockNotFound = !refreshed
    }
    
    func (l *lockServer) setResponseDelay(responseDelay time.Duration) {
    	atomic.StoreInt64(&l.responseDelay, int64(responseDelay))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/signature_constants.h

    /// Regression API constants.
    
    /// Regression inputs.
    static constexpr char kRegressInputs[] = "inputs";
    
    /// Regression method name used in a SignatureDef.
    static constexpr char kRegressMethodName[] = "tensorflow/serving/regress";
    
    /// Regression outputs.
    static constexpr char kRegressOutputs[] = "outputs";
    
    ////////////////////////////////////////////////////////////////////////////////
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime_cache.go

    type runtimeCache struct {
    	sync.Mutex
    	// The underlying container runtime used to update the cache.
    	getter podsGetter
    	// The interval after which the cache should be refreshed.
    	cachePeriod time.Duration
    	// Last time when cache was updated.
    	cacheTime time.Time
    	// The content of the cache.
    	pods []*Pod
    }
    
    // GetPods returns the cached pods if they are not outdated; otherwise, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top