Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for usedBy (0.14 sec)

  1. fastapi/applications.py

                    """
                    A list of tags used by OpenAPI, these are the same `tags` you can set
                    in the *path operations*, like:
    
                    * `@app.get("/users/", tags=["users"])`
                    * `@app.get("/items/", tags=["items"])`
    
                    The order of the tags can be used to specify the order shown in
                    tools like Swagger UI, used in the automatic path `/docs`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    //
    // The provided context is used until the transaction is committed or rolled back.
    // If the context is canceled, the sql package will roll back
    // the transaction. [Tx.Commit] will return an error if the context provided to
    // BeginTx is canceled.
    //
    // The provided [TxOptions] is optional and may be nil if defaults should be used.
    // If a non-default isolation level is used that the driver doesn't support,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field xdoc.separator="blank">
              <name>properties</name>
              <version>4.0.0+</version>
              <description>
                Properties that can be used throughout the POM as a substitution, and
                are used as filters in resources if enabled.
                The format is {@code &lt;name>value&lt;/name>}.
              </description>
              <type>Properties</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // an error, panic with the value [ErrAbortHandler].
    type Handler interface {
    	ServeHTTP(ResponseWriter, *Request)
    }
    
    // A ResponseWriter interface is used by an HTTP handler to
    // construct an HTTP response.
    //
    // A ResponseWriter may not be used after [Handler.ServeHTTP] has returned.
    type ResponseWriter interface {
    	// Header returns the header map that will be sent by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // module versions. When -retracted is used with -f or -json, the Retracted
    // field will be set to a string explaining why the version was retracted.
    // The string is taken from comments on the retract directive in the
    // module's go.mod file. When -retracted is used with -versions, retracted
    // versions are listed together with unretracted versions. The -retracted
    // flag may be used with or without -m.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *
         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         *
         * <p>If the combiningCallable throws any other exception, it will be used as the failure of the
         * derived step.
         *
         * <p>If an exception is thrown after the combiningCallable creates a {@code ClosingFuture},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	syncNodeStatusMux sync.Mutex
    
    	// updatePodCIDRMux is a lock on updating pod CIDR, because this path is not thread-safe.
    	// This lock is used by Kubelet.updatePodCIDR function and shouldn't be used anywhere else.
    	updatePodCIDRMux sync.Mutex
    
    	// updateRuntimeMux is a lock on updating runtime, because this path is not thread-safe.
    	// This lock is used by Kubelet.updateRuntimeUp, Kubelet.fastNodeStatusUpdate and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    // Most functions and methods never return an invalid value.
    // If one does, its documentation states the conditions explicitly.
    //
    // A Value can be used concurrently by multiple goroutines provided that
    // the underlying Go value can be used concurrently for the equivalent
    // direct operations.
    //
    // To compare two Values, compare the results of the Interface method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      AnyTypeOf<[TensorOf<allowedOpTypes>, NoneType], description>,
      TFL_RuntimeType<AnyTypeOf<[TFL_1DTensorOf<allowedRuntimeTypes>, NoneType]>>;
    
    // This is used to represent the type of "ref tensors" or tensors that are
    // used as variables to track state.
    def TFL_StatefulTensor : TypeAlias<AnyTensor, "stateful tensor">;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // Value to use for signal mask for newly created M's.
    var initSigmask sigset
    
    // The main goroutine.
    func main() {
    	mp := getg().m
    
    	// Racectx of m0->g0 is used only as the parent of the main goroutine.
    	// It must not be used for anything else.
    	mp.g0.racectx = 0
    
    	// Max stack size is 1 GB on 64-bit, 250 MB on 32-bit.
    	// Using decimal instead of binary GB and MB because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top