Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 224 for run1 (0.06 sec)

  1. 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)
  2. src/cmd/compile/internal/types2/api_test.go

    		{`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`},
    		{`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`},
    
    		{`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`},
    		{`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`},
    		{`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`},
    
    		{`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	makeBucketOptions MakeBucketOptions
    }
    
    // ExecObjectLayerAPITest - executes object layer API tests.
    // Creates single node and Erasure ObjectLayer instance, registers the specified API end points and runs test for both the layers.
    func ExecObjectLayerAPITest(args ExecObjectLayerAPITestArgs) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// reset globals.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    		})
    		t.Run("sidecar", func(t *testing.T) {
    			testInboundListenerConfigWithSidecar(t, p,
    				buildService("test.com", wildcardIPv4, protocol.HTTP, tnow))
    		})
    		t.Run("sidecar with service", func(t *testing.T) {
    			testInboundListenerConfigWithSidecarWithoutServices(t, p)
    		})
    	}
    
    	t.Run("services target port conflict with static listener", func(t *testing.T) {
    		p := getProxy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    				{
    					delay: 1 * time.Second,
    				},
    			},
    			finalDelay:       3 * time.Second,
    			wantRequestCount: 2,
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    	// attacher loop
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			t.Logf("test case: %s", tc.name)
    			fakeClient := fakeclient.NewSimpleClientset()
    			plug, tmpDir := newTestPluginWithAttachDetachVolumeHost(t, fakeClient)
    			defer os.RemoveAll(tmpDir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"%+q", "\U0010ffff", `"\U0010ffff"`},
    	{"%#q", "\U0010ffff", "`􏿿`"},
    	{"%#+q", "\U0010ffff", "`􏿿`"},
    	// Runes that are not valid.
    	{"%q", string(rune(0x110000)), `"�"`},
    	{"%+q", string(rune(0x110000)), `"\ufffd"`},
    	{"%#q", string(rune(0x110000)), "`�`"},
    	{"%#+q", string(rune(0x110000)), "`�`"},
    
    	// characters
    	{"%c", uint('x'), "x"},
    	{"%c", 0xe4, "ä"},
    	{"%c", 0x672c, "本"},
    	{"%c", '日', "日"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// If a request with the dry-run attribute would trigger a call to this webhook, the request will instead fail.
    	SideEffectClassSome SideEffectClass = "Some"
    	// SideEffectClassNoneOnDryRun means that calling the webhook will possibly have side effects, but if the
    	// request being reviewed has the dry-run attribute, the side effects will be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					status: framework.NewStatus(framework.Skip),
    				},
    			},
    			disable: true,
    		},
    	}
    
    	for name, tc := range testcases {
    		// We can run in parallel because logging is per-test.
    		tc := tc
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    			nodes := tc.nodes
    			if nodes == nil {
    				nodes = []*v1.Node{workerNode}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller_test.go

    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay: 200 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    				{
    					delay: 1 * time.Second,
    				},
    			},
    			finalDelay:       3 * time.Second,
    			wantRequestCount: 2,
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			ns := "other"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top