Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 343 for December (0.11 sec)

  1. docs/en/docs/tutorial/security/get-current-user.md

        ```Python hl_lines="5  12-16"
        {!> ../../../docs_src/security/tutorial002.py!}
        ```
    
    ## Create a `get_current_user` dependency
    
    Let's create a dependency `get_current_user`.
    
    Remember that dependencies can have sub-dependencies?
    
    `get_current_user` will have a dependency with the same `oauth2_scheme` we created before.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/log/slog/handler.go

    		if h2.json && pfa[len(pfa)-1] == '{' {
    			state.sep = ""
    		}
    	}
    	// Remember the position in the buffer, in case all attrs are empty.
    	pos := state.buf.Len()
    	state.openGroups()
    	if !state.appendAttrs(as) {
    		state.buf.SetLen(pos)
    	} else {
    		// Remember the new prefix for later keys.
    		h2.groupPrefix = state.prefix.String()
    		// Remember how many opened groups are in preformattedAttrs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/compress/testdata/gettysburg.txt

    consecrate - we can not hallow - this ground.
      The brave men, living and dead, who struggled here, have
    consecrated it, far above our poor power to add or detract.
    The world will little note, nor long remember what we say here,
    but it can never forget what they did here.
      It is for us the living, rather, to be dedicated here to the
    unfinished work which they who fought here have thus far so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/cookie-params.md

        {!> ../../../docs_src/cookie_params/tutorial001.py!}
        ```
    
    !!! note "Technical Details"
        `Cookie` is a "sister" class of `Path` and `Query`. It also inherits from the same common `Param` class.
    
        But remember that when you import `Query`, `Path`, `Cookie` and others from `fastapi`, those are actually functions that return special classes.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/runtime/sys_libc.go

    		// all three values to be non-zero, it will use them
    		mp.libcallsp = getcallersp()
    	} else {
    		// Make sure we don't reset libcallsp. This makes
    		// libcCall reentrant; We remember the g/pc/sp for the
    		// first call on an M, until that libcCall instance
    		// returns.  Reentrance only matters for signals, as
    		// libc never calls back into Go.  The tricky case is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/background-tasks.md

    Isso é útil para operações que precisam acontecer após uma solicitação, mas que o cliente realmente não precisa esperar a operação ser concluída para receber a resposta.
    
    Isso inclui, por exemplo:
    
    - Envio de notificações por email após a realização de uma ação:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. hack/logcheck.conf

    # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
    #
    # By default, structured logging call parameters are checked, but usage of
    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    # golangci-lint will report stale results:
    #    _output/local/bin/golangci-lint cache clean
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskRequiredServices.java

        }
    
        @Override
        public void acceptServiceReferences(List<? extends BuildServiceProvider<?, ?>> serviceReferences) {
            // someone already collected service references for us, just remember them
            consumedServices = serviceReferences;
        }
    
        @Override
        public boolean hasServiceReferences() {
            return consumedServices != null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/services/internal/ConsumedBuildServiceProvider.java

                }
                // resolved, so remember it
                resolvedProvider = Cast.uncheckedCast(results.stream().findFirst().get().getService());
            }
            return resolvedProvider;
        }
    
        @Nonnull
        @Override
        public Class<T> getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-fields.md

        And Pydantic's `Field` returns an instance of `FieldInfo` as well.
    
        `Body` also returns objects of a subclass of `FieldInfo` directly. And there are others you will see later that are subclasses of the `Body` class.
    
        Remember that when you import `Query`, `Path`, and others from `fastapi`, those are actually functions that return special classes.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top