Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for _run (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            }
    
            when:
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
    
            when:
            // stop the daemon to make sure that when we run the build again
            // it's fetched from the persistent cache
            run '--stop'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	kubeletPodsDir               = "fake-dir"
    	testOperationBackOffDuration = 100 * time.Millisecond
    	reconcilerSyncWaitDuration   = 10 * time.Second
    )
    
    func hasAddedPods() bool { return true }
    
    // Calls Run()
    // Verifies there are no calls to attach, detach, mount, unmount, etc.
    func Test_Run_Positive_DoNothing(t *testing.T) {
    	// Arrange
    	volumePluginMgr, fakePlugin := volumetesting.GetTestKubeletVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTaskReady(finalizerDep2)
            assertTaskReadyAndNoMoreToStart(finalizer2)
            assertAllWorkComplete()
        }
    
        def "dependency of multiple finalizers does not run when none of the finalizers run"() {
            given:
            Task finalizerDepDep = task("finalizerDepDep", type: Async)
            Task finalizerDep1 = task("finalizerDep1", type: Async, dependsOn: [finalizerDepDep])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    			subtests: makeIPv6(""),
    		},
    		{
    			family:   "IPv6 zone",
    			subtests: makeIPv6("eth0"),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.family, func(t *testing.T) {
    			for _, st := range tt.subtests {
    				t.Run(st.p.String(), func(t *testing.T) {
    					// Ensure st.ip is not mutated.
    					orig := st.ip.String()
    
    					p, err := st.ip.Prefix(int(st.bits))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    It explains:
    
     * Ways to control how the tests are run (<<#sec:test_execution,Test execution>>)
     * How to select specific tests to run (<<#test_filtering,Test filtering>>)
     * What test reports are generated and how to influence the process (<<#test_reporting,Test reporting>>)
     * How Gradle finds tests to run (<<#sec:test_detection,Test detection>>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    		"portForward with uid":            {url: "/portForward/podNamespace/podID/uid", bucket: "portForward"},
    		"run":                             {url: "/run/podNamespace/podID/containerName", bucket: "run"},
    		"run with uid":                    {url: "/run/podNamespace/podID/uid/containerName", bucket: "run"},
    		"runningpods":                     {url: "/runningpods/", bucket: "runningpods"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      echo "Run this script again with START_MODE=kubeletonly to run a kubelet"
    fi
    
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      echo
      if [[ "${ENABLE_DAEMON}" = false ]]; then
        echo "To start using your cluster, you can open up another terminal/tab and run:"
      else
        echo "To start using your cluster, run:"
      fi
      cat <<EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    	for _, tc := range upperTests {
    		b.Run(tc.in, func(b *testing.B) {
    			for i := 0; i < b.N; i++ {
    				actual := ToUpper(tc.in)
    				if actual != tc.out {
    					b.Errorf("ToUpper(%q) = %q; want %q", tc.in, actual, tc.out)
    				}
    			}
    		})
    	}
    }
    
    func BenchmarkToLower(b *testing.B) {
    	for _, tc := range lowerTests {
    		b.Run(tc.in, func(b *testing.B) {
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    		}
    	}
    	close(feeder)
    }
    
    func BenchmarkHandshakeServer(b *testing.B) {
    	b.Run("RSA", func(b *testing.B) {
    		benchmarkHandshakeServer(b, VersionTLS12, TLS_RSA_WITH_AES_128_GCM_SHA256,
    			0, testRSACertificate, testRSAPrivateKey)
    	})
    	b.Run("ECDHE-P256-RSA", func(b *testing.B) {
    		b.Run("TLSv13", func(b *testing.B) {
    			benchmarkHandshakeServer(b, VersionTLS13, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	defer cancel()
    	go reconciler.Run(ctx)
    
    	// Assert
    	waitForNewAttacherCallCount(t, 1 /* expectedCallCount */, fakePlugin)
    	waitForAttachCallCount(t, 1 /* expectedAttachCallCount */, fakePlugin)
    	verifyNewDetacherCallCount(t, true /* expectZeroNewDetacherCallCount */, fakePlugin)
    }
    
    // Populates desiredStateOfWorld cache with one node/volume/pod tuple.
    // Calls Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top