Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for Parallel (0.13 sec)

  1. hack/ginkgo-e2e.sh

    ginkgo=$(kube::util::find-binary "ginkgo")
    e2e_test=$(kube::util::find-binary "e2e.test")
    
    # --- Setup some env vars.
    
    GINKGO_PARALLEL=${GINKGO_PARALLEL:-n} # set to 'y' to run tests in parallel
    GINKGO_SILENCE_SKIPS=${GINKGO_SILENCE_SKIPS:-y} # set to 'n' to see S character for each skipped test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    type AdmissionRequest struct {
    	// UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
    	// otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    	// The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/net/lookup_windows_test.go

    		for _, server := range nslookupTestServers {
    			server := server
    			var name string
    			if def {
    				name = "default/"
    			} else {
    				name = "go/"
    			}
    			t.Run(name+server, func(t *testing.T) {
    				t.Parallel()
    				r := DefaultResolver
    				if !def {
    					r = &Resolver{PreferGo: true}
    				}
    				fn(t, r, server)
    			})
    		}
    	}
    }
    
    func TestNSLookupMX(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top