Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 2,494 for wget (0.02 sec)

  1. docs/em/docs/index.md

        * ๐Ÿฆ ๐ŸŽš.
        * ๐Ÿ“„.
    
    ---
    
    ๐Ÿ‘Ÿ ๐Ÿ”™ โฎ๏ธ ๐Ÿ“Ÿ ๐Ÿ–ผ, **FastAPI** ๐Ÿ”œ:
    
    * โœ” ๐Ÿ‘ˆ ๐Ÿ“ค `item_id` โžก `GET` & `PUT` ๐Ÿ“จ.
    * โœ” ๐Ÿ‘ˆ `item_id` ๐Ÿ†Ž `int` `GET` & `PUT` ๐Ÿ“จ.
        * ๐Ÿšฅ โšซ๏ธ ๐Ÿšซ, ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ”œ ๐Ÿ‘€ โš , ๐Ÿ†‘ โŒ.
    * โœ… ๐Ÿšฅ ๐Ÿ“ค ๐Ÿ“ฆ ๐Ÿ”ข ๐Ÿ”ข ๐Ÿ“› `q` ( `http://127.0.0.1:8000/items/foo?q=somequery`) `GET` ๐Ÿ“จ.
        *  `q` ๐Ÿ”ข ๐Ÿ“ฃ โฎ๏ธ `= None`, โšซ๏ธ ๐Ÿ“ฆ.
        * ๐Ÿต `None` โšซ๏ธ ๐Ÿ”œ ๐Ÿšš (๐Ÿ’ช ๐Ÿ’ผ โฎ๏ธ `PUT`).
    *  `PUT` ๐Ÿ“จ `/items/{item_id}`, โœ ๐Ÿ’ช ๐ŸŽป:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  2. docs/he/docs/index.md

    ---
    
    ื‘ื—ื–ืจื” ืœื“ื•ื’ืžืืช ื”ืงื•ื“ ื”ืงื•ื“ืžืช, **FastAPI** ื™ื“ืื’:
    
    -   ืœืืžืช ืฉื™ืฉ `item_id` ื‘ื ืชื™ื‘ ื‘ื‘ืงืฉื•ืช `GET` ื• - `PUT`.
    -   ืœืืžืช ืฉื” - `item_id` ื”ื•ื ืžื˜ื™ืคื•ืก `int` ื‘ื‘ืงืฉื•ืช `GET` ื• - `PUT`.
        -   ืื ื”ื•ื ืœื, ื”ืœืงื•ื— ื™ืจืื” ืฉื’ื™ืื” ื‘ืจื•ืจื” ื•ืฉื™ืžื•ืฉื™ืช.
    -   ืœื‘ื“ื•ืง ื”ืื ืงื™ื™ื ืคืจืžื˜ืจ ืฉืื™ืœืชื ื‘ืฉื `q` (ืงืจื™ `http://127.0.0.1:8000/items/foo?q=somequery`) ืœื‘ืงืฉื•ืช `GET`.
        -   ืžืื—ืจ ื•ื”ืคืจืžื˜ืจ `q` ืžื•ื’ื“ืจ ืขื <code dir="ltr"> = None</code>, ื”ื•ื ืื•ืคืฆื™ื•ื ืœื™.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/first-steps.md

    #### Dรฉfinir un *dรฉcorateur d'opรฉration de chemin*
    
    {* ../../docs_src/first_steps/tutorial001.py hl[6] *}
    
    Le `@app.get("/")` dit ร  **FastAPI** que la fonction en dessous est chargรฉe de gรฉrer les requรชtes qui vont sur :
    
    * le chemin `/`
    * en utilisant une <abbr title="une mรฉthode GET HTTP">opรฉration <code>get</code></abbr>
    
    /// info | `@dรฉcorateur` Info
    
    Cette syntaxe `@something` en Python est appelรฉe un "dรฉcorateur".
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/AbstractTableTest.java

        other.put("cat", 2, cellValue('f'));
        table.putAll(other);
        assertEquals((Character) 'd', table.get("foo", 1));
        assertEquals((Character) 'b', table.get("bar", 1));
        assertEquals((Character) 'c', table.get("foo", 3));
        assertEquals((Character) 'e', table.get("bar", 2));
        assertEquals((Character) 'f', table.get("cat", 2));
        assertSize(5);
      }
    
      public void testRemove() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java

            throw (Error) cause;
          }
        }
        throw e;
      }
    
      @Override
      public V get() throws ExecutionException, InterruptedException {
        try {
          super.get();
        } catch (ExecutionException e) {
          rethrow(e);
        }
        throw new AssertionError("Unreachable");
      }
    
      @Override
      public V get(long timeout, TimeUnit unit)
          throws InterruptedException, ExecutionException, TimeoutException {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

              else -> 124
            }
          }
    
        val b2: Int
          get() = mappedTo[0] and 0x7f
    
        val b3: Int
          get() = mappedTo[1] and 0x7f
      }
    
      data class InlineDelta(
        override val rangeStart: Int,
        val codepointDelta: Int,
      ) : MappedRange {
        private val absoluteDelta = abs(codepointDelta)
    
        val b1: Int
          get() =
            when {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. docs/sts/web-identity.go

    			return
    		}
    		if r.Form.Get("state") != state {
    			http.Error(w, "state did not match", http.StatusBadRequest)
    			return
    		}
    
    		var getWebTokenExpiry func() (*credentials.WebIdentityToken, error)
    		if clientSec == "" {
    			getWebTokenExpiry = func() (*credentials.WebIdentityToken, error) {
    				return &credentials.WebIdentityToken{
    					Token: r.Form.Get("id_token"),
    				}, nil
    			}
    		} else {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

            final int maxQueryLength = fessConfig.getQueryMaxLengthAsInteger();
    
            stream(conditions.get(SearchRequestParams.AS_OCCURRENCE))
                    .of(stream -> stream.filter(this::isOccurrence).findFirst().ifPresent(q -> queryBuf.insert(0, q + ":")));
    
            stream(conditions.get(SearchRequestParams.AS_Q))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

            final String response = checkMethodBase(searchBody).get("/api/admin/dict").asString();
            final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings");
    
            for (Map<String, String> item : dicts) {
                assertTrue(item.containsKey("id"));
                assertTrue(item.containsKey("type"));
                if (getDictType().equals(item.get("type"))) {
                    dictId = item.get("id");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/collection/SLinkedListTest.java

         */
        @Test
        public void testGet() throws Exception {
            list.addLast("1");
            list.addLast("2");
            list.addLast("3");
            assertThat(list.get(0), is("1"));
            assertThat(list.get(1), is("2"));
            assertThat(list.get(2), is("3"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSerialize() throws Exception {
            list.addLast("1");
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top