Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sunny (0.05 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"sun_with_face":                        "\U0001f31e",
    	"sunflower":                            "\U0001f33b",
    	"sunglasses":                           "\U0001f60e",
    	"sunny":                                "\u2600\ufe0f",
    	"sunrise":                              "\U0001f305",
    	"sunrise_over_mountains":               "\U0001f304",
    	"superhero":                            "\U0001f9b8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    [!GOEXPERIMENT:coverageredesign] skip
    
    go test -short -cover -covermode=atomic -coverpkg=coverdep/p1 coverdep
    
    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      TF_SetAttrString(desc, "v", "bunny", 5);
    
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", -1, TF_ATTR_STRING, 5);
      std::unique_ptr<char[]> value(new char[5]);
    
      TF_OperationGetAttrString(oper, "v", value.get(), 5, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ("bunny", string(static_cast<const char*>(value.get()), 5));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_test.go

    	{"0i", true, true, true, true, 0, 0, 0, 0},
    	{"-1.2+0i", false, false, true, true, 0, 0, -1.2, -1.2},
    	{"-12+0i", true, false, true, true, -12, 0, -12, -12},
    	{"13+0i", true, true, true, true, 13, 13, 13, 13},
    	// funny bases
    	{"0123", true, true, true, false, 0123, 0123, 0123, 0},
    	{"-0x0", true, true, true, false, 0, 0, 0, 0},
    	{"0xdeadbeef", true, true, true, false, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0},
    	// character constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for `docs/zh/docs/advanced/generate-clients.md`. PR [#9883](https://github.com/tiangolo/fastapi/pull/9883) by [@funny-cat-happy](https://github.com/funny-cat-happy).
    
    ### Refactors
    
    * ✏️ Fix typos in comment in `fastapi/applications.py`. PR [#10045](https://github.com/tiangolo/fastapi/pull/10045) by [@AhsanSheraz](https://github.com/AhsanSheraz).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top