Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,953 for Avery (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/TaskVisibilityCrossVersionSpec.groovy

            when:
            BuildInvocations model = withConnection { connection ->
                connection.getModel(BuildInvocations)
            }
    
            then:
            model.tasks.every { Task t -> publicTasks.contains(t.name) == t.public }
            model.taskSelectors.every { TaskSelector ts -> publicSelectors.contains(ts.name) == ts.public }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial004.py

    
    # Test required and embedded body parameters with no bodies sent
    def test_post_body_example():
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	// Start tracing.
    	//
    	// Set trace.enabled. This is *very* subtle. We need to maintain the invariant that if
    	// trace.gen != 0, then trace.enabled is always observed as true. Simultaneously, for
    	// performance, we need trace.enabled to be read without any synchronization.
    	//
    	// We ensure this is safe by stopping the world, which acts a global barrier on almost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top