Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 266 for something (0.11 sec)

  1. docs/em/docs/advanced/middleware.md

    ```
    
    `app.add_middleware()` πŸ“¨ πŸ› οΈ πŸŽ“ πŸ₯‡ ❌ & πŸ™† πŸŒ– ❌ πŸšΆβ€β™€οΈ πŸ› οΈ.
    
    ## πŸ› οΈ πŸ› οΈ
    
    **FastAPI** πŸ”Œ πŸ“š πŸ› οΈ ⚠ βš™οΈ πŸ’Ό, πŸ‘₯ πŸ”œ πŸ‘€ ⏭ ❔ βš™οΈ πŸ‘«.
    
    /// note | "πŸ“‘ β„Ή"
    
    ⏭ πŸ–Ό, πŸ‘† πŸ’ͺ βš™οΈ `from starlette.middleware.something import SomethingMiddleware`.
    
    **FastAPI** 🚚 πŸ“š πŸ› οΈ `fastapi.middleware` πŸͺ πŸ‘†, πŸ‘©β€πŸ’». βœ‹οΈ πŸŒ… πŸ’ͺ πŸ› οΈ πŸ‘Ÿ πŸ”— βšͺ️➑️ πŸ’ƒ.
    
    ///
    
    ## `HTTPSRedirectMiddleware`
    
    πŸ› οΈ πŸ‘ˆ 🌐 πŸ“¨ πŸ“¨ πŸ”œ πŸ‘―β€β™‚οΈ `https` βš–οΈ `wss`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    Ein β€ž**Callable**β€œ in Python ist etwas, das wie eine Funktion aufgerufen werden kann (β€žto callβ€œ).
    
    Wenn Sie also ein Objekt `something` haben (das mΓΆglicherweise _keine_ Funktion ist) und Sie es wie folgt aufrufen (ausfΓΌhren) kΓΆnnen:
    
    ```Python
    something()
    ```
    
    oder
    
    ```Python
    something(some_argument, some_keyword_argument="foo")
    ```
    
    dann ist das ein β€žCallableβ€œ (ein β€žAufrufbaresβ€œ).
    
    ## Klassen als AbhΓ€ngigkeiten
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. docs/em/docs/python-types.md

    {!../../docs_src/python_types/tutorial009.py!}
    ```
    
    βš™οΈ `Optional[str]` ↩️ `str` πŸ”œ ➑️ πŸ‘¨β€πŸŽ¨ β„Ή πŸ‘† πŸ” ❌ πŸŒβ” πŸ‘† πŸ’ͺ πŸ€” πŸ‘ˆ πŸ’² πŸ•§ `str`, πŸ•β” ⚫️ πŸ’ͺ πŸ€™ `None` πŸ’β€β™‚οΈ.
    
    `Optional[Something]` πŸ€™ ⌨ `Union[Something, None]`, πŸ‘« πŸŒ“.
    
    πŸ‘‰ β›“ πŸ‘ˆ 🐍 3️⃣.1️⃣0️⃣, πŸ‘† πŸ’ͺ βš™οΈ `Something | None`:
    
    //// tab | 🐍 3️⃣.6️⃣ & πŸ”›
    
    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial009.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. impl/maven-core/lifecycle-executor.txt

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>1.0</version</version>
        <executions>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SynchronizedQueueTest.java

        return outer;
      }
    
      private static final class TestQueue<E> implements Queue<E> {
        private final Queue<E> delegate = Lists.newLinkedList();
        public final Object mutex = new Object[0]; // something Serializable
    
        @Override
        public boolean offer(E o) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.offer(o);
        }
    
        @Override
        public @Nullable E poll() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 19 20:50:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/bug_report.yaml

    name: Bug Report
    description: Something is not working as expected
    labels: ["type=defect"]
    body:
      - type: markdown
        attributes:
          value: >
            Thank you for filing a bug report. Please help us identify and resolve the bug by filling
            out the following fields. Before we begin, please make sure that the bug is still present in
            the [latest](https://github.com/google/guava/releases/latest) version of Guava available.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 16 20:08:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                                + " (" + repository.getUrl() + ")");
            }
    
            if (file == null) {
                // TODO throw something instead?
                return true;
            }
    
            Date lastCheckDate;
    
            if (file.exists()) {
                lastCheckDate = new Date(file.lastModified());
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. cni/pkg/repair/repair_test.go

    	makeDetectPod := func(name string, terminationMessage string, exitCode int) *corev1.Pod {
    		return makePod(makePodArgs{
    			PodName:     name,
    			Annotations: map[string]string{"sidecar.istio.io/status": "something"},
    			InitContainerStatus: &corev1.ContainerStatus{
    				Name: constants.ValidationContainerName,
    				State: corev1.ContainerState{
    					Waiting: &corev1.ContainerStateWaiting{
    						Reason:  "CrashLoopBackOff",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. test-site/activator

    # This can fix cygwin style /cygdrive paths so we get the
    # windows style paths.
    cygwinpath() {
      local file="$1"
      if is_cygwin; then
        echo $(cygpath -w $file)
      else
        echo $file
      fi
    }
    
    # Make something URI friendly
    make_url() {
      url="$1"
      local nospaces=${url// /%20}
      if is_cygwin; then
        echo "/${nospaces//\\//}"
      else
        echo "$nospaces"
      fi
    }
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. bin/build_ztunnel.sh

      echo "Copying '${2}' to ${TARGET_OUT_LINUX}/ztunnel"
      cp -f "${2}" "${TARGET_OUT_LINUX}/ztunnel"
    }
    
    function maybe_build_ztunnel() {
      # TODO detect git changes or something to avoid unnecessarily building
      # BUILD_ZTUNNEL=1 with no BUILD_ZTUNNEL_REPO tries to infer BUILD_ZTUNNEL_REPO
      if [[ "${BUILD_ZTUNNEL_REPO:-}" == "" ]] && [[ "${BUILD_ZTUNNEL:-}" != "" ]]; then
        local ZTUNNEL_DIR
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top