Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,181 for Avery (0.1 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupFrequency.java

    import java.time.Duration;
    import java.time.Instant;
    
    /**
     * Represents when cache cleanup should be triggered.
     *
     * @since 8.0
     */
    public interface CleanupFrequency {
        /**
         * Trigger cleanup once every 24 hours.
         */
        CleanupFrequency DAILY = new CleanupFrequency() {
            @Override
            public boolean requiresCleanup(@Nullable Instant lastCleanupTime) {
                if (lastCleanupTime == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. ci/official/utilities/code_check_full.bats

    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
          # For every missing dependency, find the tests which directly depend on
          # it, and print that list for debugging. Not really clear if this is
          # helpful since the only examples I've seen are enormous.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/defaulttolerationseconds/admission.go

    			" that is added by default to every pod that does not already have such a toleration.")
    
    	defaultUnreachableTolerationSeconds = flag.Int64("default-unreachable-toleration-seconds", 300,
    		"Indicates the tolerationSeconds of the toleration for unreachable:NoExecute"+
    			" that is added by default to every pod that does not already have such a toleration.")
    
    	notReadyToleration = api.Toleration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 4K bytes
    - Viewed (0)
  4. src/cmd/go/chdir_test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"cmd/go/internal/base"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestChdir(t *testing.T) {
    	// We want -C to apply to every go subcommand.
    	// Test that every command either has a -C flag registered
    	// or has CustomFlags set. In the latter case, the command
    	// must be explicitly tested in TestScript/chdir.
    	script, err := os.ReadFile("testdata/script/chdir.txt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

          for (PerListenerQueue<L> queue : listeners) {
            queue.add(event, label);
          }
        }
      }
    
      /**
       * Dispatches all events enqueued prior to this call, serially and in order, for every listener.
       *
       * <p>Note: this method is idempotent and safe to call from any thread
       */
      public void dispatch() {
        // iterate by index to avoid concurrent modification exceptions
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/cover/func.go

    type Pkg struct {
    	ImportPath string
    	Dir        string
    	Error      *struct {
    		Err string
    	}
    }
    
    func findPkgs(profiles []*cover.Profile) (map[string]*Pkg, error) {
    	// Run go list to find the location of every package we care about.
    	pkgs := make(map[string]*Pkg)
    	var list []string
    	for _, profile := range profiles {
    		if strings.HasPrefix(profile.FileName, ".") || filepath.IsAbs(profile.FileName) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    === Only apply plugins where they're needed
    
    Every plugin and script that you apply to a project adds to the overall configuration time.
    Some plugins have a greater impact than others.
    That doesn’t mean you should avoid using plugins, but you should take care to only apply them where they’re needed.
    For example, it’s easy to apply plugins to all subprojects via `allprojects {}` or `subprojects {}` even if not every project needs them.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/atmostevery.go

    package internal
    
    import (
    	"sync"
    	"time"
    )
    
    // AtMostEvery will never run the method more than once every specified
    // duration.
    type AtMostEvery struct {
    	delay    time.Duration
    	lastCall time.Time
    	mutex    sync.Mutex
    }
    
    // NewAtMostEvery creates a new AtMostEvery, that will run the method at
    // most every given duration.
    func NewAtMostEvery(delay time.Duration) *AtMostEvery {
    	return &AtMostEvery{
    		delay: delay,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

                    .withTasks(":sub1:exec", ":sub2:exec")
                    .run()
            }
    
            then: "invalid JVM installation warning should be printed in every build"
            results.size() == 2
            results.every { result ->
                def expectedErrorMessages = [invalidJdkHome1, invalidJdkHome2].collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/setup.go

    			ctx.Fatal(err)
    		}
    	}
    }
    
    func (t *T) hasSourceSetup() bool {
    	return len(t.sourceDeploymentSetup) > 0
    }
    
    // SetupForPair runs the given function for every source instance in every cluster in combination with every
    // destination service.
    //
    // Example of how long this setup lasts before the given context is cleaned up:
    //   - a/to_b/from_cluster-1
    //   - a/to_b/from_cluster-2
    //   - cleanup...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top