Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 290 for Bar (0.01 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

      fun serverSendsPushPromise_GET(protocol: Protocol) {
        setUp(protocol)
        val pushPromise =
          PushPromise(
            "GET",
            "/foo/bar",
            headersOf("foo", "bar"),
            MockResponse(body = "bar"),
          )
        server.enqueue(
          MockResponse
            .Builder()
            .body("ABCDE")
            .addPush(pushPromise)
            .build(),
        )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/response-model.md

    ///
    
    #### 📊 âŽī¸ 💲 🏑 âŽī¸ đŸ”ĸ
    
    âœ‹ī¸ đŸšĨ 👆 📊 âœ”ī¸ 💲 🏷 🏑 âŽī¸ đŸ”ĸ 💲, 💖 đŸŦ âŽī¸ 🆔 `bar`:
    
    ```Python hl_lines="3  5"
    {
        "name": "Bar",
        "description": "The bartenders",
        "price": 62,
        "tax": 20.2
    }
    ```
    
    đŸ‘Ģ 🔜 🔌 📨.
    
    #### 📊 âŽī¸ 🎏 💲 đŸ”ĸ
    
    đŸšĨ 📊 âœ”ī¸ 🎏 💲 đŸ”ĸ 🕐, 💖 đŸŦ âŽī¸ 🆔 `baz`:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/lex_test.go

    			buf.WriteByte('.')
    		}
    		buf.WriteString(input.Text())
    	}
    }
    
    type badLexTest struct {
    	input string
    	error string
    }
    
    var badLexTests = []badLexTest{
    	{
    		"3 #define foo bar\n",
    		"'#' must be first item on line",
    	},
    	{
    		"#ifdef foo\nhello",
    		"unclosed #ifdef or #ifndef",
    	},
    	{
    		"#ifndef foo\nhello",
    		"unclosed #ifdef or #ifndef",
    	},
    	{
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/api/api_test.go

    	}
    
    	tests := []struct {
    		pkg  string
    		want bool
    	}{
    		{"net/http", true},
    		{"net/http/internal-foo", true},
    		{"net/http/internal", false},
    		{"net/http/internal/bar", false},
    		{"internal/foo", false},
    		{"internal", false},
    	}
    	for _, tt := range tests {
    		got := !internalPkg.MatchString(tt.pkg)
    		if got != tt.want {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri May 02 17:06:27 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

      /** Tests that if specify '%' as safe the result is an idempotent escaper. */
      public void testCustomEscaper_withpercent() {
        UnicodeEscaper e = new PercentEscaper("%", false);
        assertEquals("foo%7Cbar", e.escape("foo|bar"));
        assertEquals("foo%7Cbar", e.escape("foo%7Cbar")); // idempotent
      }
    
      /** Test that giving a null 'safeChars' string causes a {@link NullPointerException}. */
      public void testBadArguments_null() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/handling-errors.md

    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    But if the client requests `http://example.com/items/bar` (a non-existent `item_id` `"bar"`), that client will receive an HTTP status code of 404 (the "not found" error), and a JSON response of:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ComparisonChain.java

     *
     * <p>Using {@link Comparator} avoids certain types of bugs, for example when you meant to write
     * {@code .compare(a.foo, b.foo)} but you actually wrote {@code .compare(a.foo, a.foo)} or {@code
     * .compare(a.foo, b.bar)}. {@code ComparisonChain} also has a potential performance problem that
     * {@code Comparator} doesn't: it evaluates all the parameters of all the {@code .compare} calls,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. tests/associations_test.go

    	id := uint(100)
    	user := AssociationEmptyUser{
    		ID:   id,
    		Name: "jinzhu",
    		Pets: []AssociationEmptyPet{
    			{AssociationEmptyUserID: &id, Name: "bar"},
    			{AssociationEmptyUserID: &id, Name: "foo"},
    		},
    	}
    
    	err := DB.Session(&gorm.Session{FullSaveAssociations: true}).Create(&user).Error
    	if err != nil {
    		t.Fatalf("Failed to create, got error: %v", err)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java

          implements TestListGenerator<Entry<String, Integer>> {
    
        @Override
        public SampleElements<Entry<String, Integer>> samples() {
          return new SampleElements<>(
              mapEntry("foo", 5),
              mapEntry("bar", 3),
              mapEntry("baz", 17),
              mapEntry("quux", 1),
              mapEntry("toaster", -2));
        }
    
        @SuppressWarnings("unchecked")
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/body-updates.md

    👆 đŸ’Ē âš™ī¸ `jsonable_encoder` 🗜 đŸ”ĸ đŸ’Ŋ 📊 👈 đŸ’Ē đŸĒ đŸŽģ (✅ âŽī¸ ☁ đŸ’Ŋ). đŸ–ŧ, 🏭 `datetime` `str`.
    
    {* ../../docs_src/body_updates/tutorial001.py hl[30:35] *}
    
    `PUT` âš™ī¸ 📨 đŸ’Ŋ 👈 🔜 ❎ â™ģ đŸ’Ŋ.
    
    ### ⚠ 🔃 ❎
    
    👈 ⛓ 👈 đŸšĨ 👆 💚 ℹ đŸŦ `bar` âš™ī¸ `PUT` âŽī¸ đŸ’Ē ⚗:
    
    ```Python
    {
        "name": "Barz",
        "price": 3,
        "description": None,
    }
    ```
    
    â†Šī¸ âšĢī¸ đŸšĢ 🔌 âĒ đŸĒ đŸ”ĸ `"tax": 20.2`, đŸ”ĸ 🏷 🔜 ✊ đŸ”ĸ 💲 `"tax": 10.5`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 11:27:35 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top