Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for xHello (0.2 sec)

  1. src/crypto/tls/tls_test.go

    				test.serverConfig(serverConfig)
    			}
    			serverConfig.GetConfigForClient = func(hello *ClientHelloInfo) (*Config, error) {
    				if !test.expectClientSupport && slices.Contains(hello.SupportedCurves, x25519Kyber768Draft00) {
    					return nil, errors.New("client supports Kyber768Draft00")
    				} else if test.expectClientSupport && !slices.Contains(hello.SupportedCurves, x25519Kyber768Draft00) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedCalcCost: 2,
    			setMaxElements:   30,
    			expectedSetCost:  2,
    		},
    		{
    			name:             "concat string",
    			schemaGenerator:  genStringWithRule(`size(self + "hello") > size("hello")`),
    			expectedCalcCost: 314578,
    			setMaxElements:   4,
    			expectedSetCost:  7,
    		},
    		{
    			name:             "index of array with numbers",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    		defer close(doneChan)
    
    		config := test.config
    		if config == nil {
    			config = testConfig
    		}
    		client := Client(clientConn, config)
    		defer client.Close()
    
    		if _, err := client.Write([]byte("hello\n")); err != nil {
    			t.Errorf("Client.Write failed: %s", err)
    			return
    		}
    
    		for i := 1; i <= test.numRenegotiations; i++ {
    			// The initial handshake will generate a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

      }
    
      @SuppressWarnings("serial")
      public void testLinkedHashMapWithInitialMap() {
        Map<String, String> map =
            new LinkedHashMap<String, String>(
                ImmutableMap.of(
                    "Hello", "World",
                    "first", "second",
                    "polygene", "lubricants",
                    "alpha", "betical"));
    
        LinkedHashMap<String, String> copy = Maps.newLinkedHashMap(map);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    	}
    	config := test.config
    	if config == nil {
    		config = testConfig
    	}
    	server := Server(serverConn, config)
    	connStateChan := make(chan ConnectionState, 1)
    	go func() {
    		_, err := server.Write([]byte("hello, world\n"))
    		if len(test.expectHandshakeErrorIncluding) > 0 {
    			if err == nil {
    				t.Errorf("Error expected, but no error returned")
    			} else if s := err.Error(); !strings.Contains(s, test.expectHandshakeErrorIncluding) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								"name": "1",
    								"key":  "value",
    							},
    							map[string]interface{}{
    								"name": "2",
    								"key":  "value",
    							},
    						},
    						"otherField": "hello world",
    					}},
    				// (This test shows an array cannpt be correlated by index with its old value)
    				expectError{applyPatchOperation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    						// selected node, but because the plugin is not using
    						// patching yet, Update nonetheless fails.
    						return st.FromPodSchedulingContexts(in).
    							Label("hello", "world").
    							Obj()
    					},
    				},
    			},
    			want: want{
    				prebind: result{
    					status: framework.AsStatus(errors.New(`ResourceVersion must match the object that gets updated`)),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	}
    
    	vers := uint16(hdr[1])<<8 | uint16(hdr[2])
    	expectedVers := c.vers
    	if expectedVers == VersionTLS13 {
    		// All TLS 1.3 records are expected to have 0x0303 (1.2) after
    		// the initial hello (RFC 8446 Section 5.1).
    		expectedVers = VersionTLS12
    	}
    	n := int(hdr[3])<<8 | int(hdr[4])
    	if c.haveVers && vers != expectedVers {
    		c.sendAlert(alertProtocolVersion)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top