Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 146 for pirates (0.24 sec)

  1. src/cmd/compile/internal/ssa/location.go

    //
    //	Optimizations are disabled. s is on the stack and represented in its entirety.
    //	[ ------- s string ---- ] { N: s, Type: string, Off: 0 }
    //
    //	s was not decomposed, but the SSA operates on its parts individually, so
    //	there is a LocalSlot for each of its fields that points into the single stack slot.
    //	[ ------- s string ---- ] { N: s, Type: *uint8, Off: 0 }, {N: s, Type: int, Off: 8}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/response-directly.md

    ## Devolviendo una `Response` personalizada
    
    El ejemplo anterior muestra las partes que necesitas, pero no es muy útil todavía, dado que podrías simplemente devolver el `item` directamente, y **FastAPI** lo pondría en una `JSONResponse` por ti, convirtiéndolo en un `dict`, etc. Todo esto por defecto.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/escape/Escaper.java

     * string {@code "Foo<Bar>"}.
     *
     * <p>An {@code Escaper} instance is required to be stateless, and safe when used concurrently by
     * multiple threads.
     *
     * <p>Because, in general, escaping operates on the code points of a string and not on its
     * individual {@code char} values, it is not safe to assume that {@code escape(s)} is equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 16:02:17 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. src/strings/reader.go

    // A Reader implements the [io.Reader], [io.ReaderAt], [io.ByteReader], [io.ByteScanner],
    // [io.RuneReader], [io.RuneScanner], [io.Seeker], and [io.WriterTo] interfaces by reading
    // from a string.
    // The zero value for Reader operates like a Reader of an empty string.
    type Reader struct {
    	s        string
    	i        int64 // current reading index
    	prevRune int   // index of previous rune; or < 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

            this.collectionFilter = filter;
    
            return this;
        }
    
        /**
         * Gets the artifact filter that controls downloading of artifact files. This filter operates on those artifacts
         * that have been included by the {@link #getCollectionFilter()}.
         *
         * @return The filter used to determine which of the artifacts should have their files resolved or {@code null} to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate.go

    func handleNamespace(istioNamespace string) string {
    	if istioNamespace == "" {
    		istioNamespace = constants.IstioSystemNamespace
    	}
    	return istioNamespace
    }
    
    // TODO(nmittler): Remove this once Pilot migrates to galley schema.
    func convertObjectFromUnstructured(schema resource.Schema, un *unstructured.Unstructured, domain string) (*config.Config, error) {
    	data, err := fromSchemaAndJSONMap(schema, un.Object["spec"])
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/test/framework/components/namespace/namespace.go

    func (g Getter) Get() Instance {
    	return g()
    }
    
    // Future creates a Getter for a variable that namespace that will be set at sometime in the future.
    // This is helpful for configuring a setup chain for a test suite that operates on global variables.
    func Future(ns *Instance) Getter {
    	return func() Instance {
    		return *ns
    	}
    }
    
    func Dump(ctx resource.Context, name string) {
    	ns := &kubeNamespace{
    		ctx:    ctx,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. docs/es/docs/index.md

    ## Requisitos
    
    FastAPI está sobre los hombros de gigantes:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> para las partes web.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> para las partes de datos.
    
    ## Instalación
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

        if (func.isExternal()) continue;
        OpBuilder builder(func.getContext());
        const TF::SideEffectAnalysis::Info& info =
            side_effect_analysis.GetAnalysisForFunc(func);
    
        // Operates on individual blocks independently of if they are directly in
        // the function body or if they are nested in individual
        // `tf_executor.island`.
        for (Block& block : func.getBody()) BuildClusters(block, builder, info);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment/https.md

        * Os conteúdos são criptografados, embora sejam enviados com o protocolo HTTP.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 05 10:40:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top