Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for funny (0.04 sec)

  1. 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)
  2. src/cmd/go/internal/script/state.go

    // later values and any required system variables defined.
    //
    // If env is nil, cleanEnv copies the environment from os.Environ().
    func cleanEnv(env []string, pwd string) []string {
    	// There are some funky edge-cases in this logic, especially on Windows (with
    	// case-insensitive environment variables and variables with keys like "=C:").
    	// Rather than duplicating exec.dedupEnv here, cheat and use exec.Cmd directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/math/big/nat_test.go

    }
    
    func TestCmp(t *testing.T) {
    	for i, a := range cmpTests {
    		r := a.x.cmp(a.y)
    		if r != a.r {
    			t.Errorf("#%d got r = %v; want %v", i, r, a.r)
    		}
    	}
    }
    
    type funNN func(z, x, y nat) nat
    type argNN struct {
    	z, x, y nat
    }
    
    var sumNN = []argNN{
    	{},
    	{nat{1}, nil, nat{1}},
    	{nat{1111111110}, nat{123456789}, nat{987654321}},
    	{nat{0, 0, 0, 1}, nil, nat{0, 0, 0, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. 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)
  5. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

         *   3
         *   -Drevision=1.3.0
         *   "-Dlabel=Apache Maven"
         * </pre>
         * and check if the {@code -Drevision-1.3.0} option can be overwritten via command line argument when there are
         * funky arguments present.
         *
         * @throws Exception
         */
        @Test
        void testMVNConfigurationFunkyArguments() throws Exception {
            System.setProperty(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    					// root namespace disables all, but then enables them by namespace scoped
    					key := metricProviderModeKey(provider, mode)
    					disabledAllMetricsProviders.Delete(key)
    					// Next, get all matches.
    					// This is a bit funky because the matches are oneof of ENUM and customer metric. We normalize
    					// these to strings, so we may end up with a list like [REQUEST_COUNT, my-customer-metric].
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/lunny/dingtalk_webhook,v0.0.0-20171025031554-e3534c89ef96,h1:uNwtsDp7ci48vBTTxDuwcoTXz4lwtDTe7TjCQ0noaWY=,b94d4c7cacca0c289b3fbbeae6cc9e66f2eec4a3210fbbfd208316337ff2f1e3
    github.com/lunny/levelqueue,v0.0.0-20190217115915-02b525a4418e,h1:GSprKUrG9wNgwQgROvjPGXmcZrg4OLslOuZGB0uJjx8=,8f62ece23811c3c2be0d1c8d10057ab564641b2f73dc5a9910dd5f8462954f19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
Back to top