Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for xHello (0.12 sec)

  1. 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)
  2. 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)
  3. docs/ru/docs/deployment/docker.md

    * Создайте файл `main.py` и заполните его:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //	fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)
    //	_ = Connect(fd, &SockaddrRFCOMM{
    //		Channel: 1,
    //		Addr:    [6]byte{0x11, 0x22, 0x33, 0xaa, 0xbb, 0xcc}, // CC:BB:AA:33:22:11
    //	})
    //	Write(fd, []byte(`hello`))
    type SockaddrRFCOMM struct {
    	// Addr represents a bluetooth address, byte ordering is little-endian.
    	Addr [6]uint8
    
    	// Channel is a designated bluetooth channel, only 1-30 are available for use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        // attempt to delete the file. Do not explicitly close the cache here so the entry is left as
        // incomplete.
        val creator = cache.edit("k1")!!
        creator.newSink(0).buffer().use {
          it.writeUtf8("Hello")
        }
    
        // Simulate a severe Filesystem failure on the first initialization.
        filesystem.setFaultyDelete(cacheDir / "k1.0.tmp", true)
        filesystem.setFaultyDelete(cacheDir, true)
        cache =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    		t.Fatal(err)
    	}
    
    	const name = "test"
    	const server = "192.0.2.53:53"
    	const searchX = "test.x.golang.org."
    	const searchY = "test.y.golang.org."
    	const txt = "Hello World"
    
    	fake := fakeDNSServer{rh: func(_, s string, q dnsmessage.Message, deadline time.Time) (dnsmessage.Message, error) {
    		t.Log(s, q)
    
    		switch q.Questions[0].Name.String() {
    		case searchX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

        }
    
        TF_DeleteTensor(dst);
      }
    }
    
    TEST(CAPI, TensorEncodeDecodeStrings) {
      TestEncodeDecode(__LINE__, {});
      TestEncodeDecode(__LINE__, {"hello"});
      TestEncodeDecode(__LINE__,
                       {"the", "quick", "brown", "fox", "jumped", "over"});
    
      string big(1000, 'a');
      TestEncodeDecode(__LINE__, {"small", big, "small2"});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top