Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 9,026 for gives (0.11 sec)

  1. src/crypto/internal/nistec/p256_ordinv.go

    	// the order of the scalar field. Elements in the Montgomery domain take the
    	// form a×R and p256OrdMul calculates (a × b × R⁻¹) mod n. RR is R in the
    	// domain, or R×R mod n, thus p256OrdMul(x, RR) gives x×R, i.e. converts x
    	// into the Montgomery domain.
    	RR := &p256OrdElement{0x83244c95be79eea2, 0x4699799c49bd6fa6,
    		0x2845b2392b6bec59, 0x66e12d94f3d95620}
    
    	p256OrdMul(_1, x, RR)      // _1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile_main.cc

    namespace tfcompile {
    
    const char kUsageHeader[] =
        "tfcompile performs ahead-of-time compilation of a TensorFlow graph,\n"
        "resulting in an object file compiled for your target architecture, and a\n"
        "header file that gives access to the functionality in the object file.\n"
        "A typical invocation looks like this:\n"
        "\n"
        "   $ tfcompile --graph=mygraph.pb --config=myfile.pbtxt "
        "--cpp_class=\"mynamespace::MyComputation\"\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/util/smallset/smallset.go

    type Set[T constraints.Ordered] struct {
    	items []T
    }
    
    // NewPresorted creates a new Set with the given items.
    // If items is not sorted or contains duplicates, this gives undefined behavior; use New instead.
    func NewPresorted[T constraints.Ordered](items ...T) Set[T] {
    	return Set[T]{items: items}
    }
    
    // New creates a new Set with the given items.
    // Duplicates are removed
    func New[T constraints.Ordered](items ...T) Set[T] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_code.go

    		panic("leafCounts[maxBits][maxBits] != n")
    	}
    
    	bitCount := h.bitCount[:maxBits+1]
    	bits := 1
    	counts := &leafCounts[maxBits]
    	for level := maxBits; level > 0; level-- {
    		// chain.leafCount gives the number of literals requiring at least "bits"
    		// bits to encode.
    		bitCount[bits] = counts[level] - counts[level-1]
    		bits++
    	}
    	return bitCount
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact resolution query. This is used whenever repository
     * content filtering is in place.
     * <p></p>
     * This interface gives access to the details of the artifact query. There are two
     * cases when filtering can be called:
     * <p></p>
     * <ul>
     *     <li>when looking for a specific module version, for example org:foo:1.0</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

        /**
         * Applies given action for each dependency.
         * An instance of {@link DependencyResult} is passed as parameter to the action.
         *
         * @param action - action that is applied for each dependency
         */
        void allDependencies(Action<? super DependencyResult> action);
    
        /**
         * Applies given closure for each dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/response-directly.md

    And when you return a `Response`, **FastAPI** will pass it directly.
    
    It won't do any data conversion with Pydantic models, it won't convert the contents to any type, etc.
    
    This gives you a lot of flexibility. You can return any data type, override any data declaration or validation, etc.
    
    ## Using the `jsonable_encoder` in a `Response`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 3K bytes
    - Viewed (0)
  8. pkg/test/echo/response.go

    	// IstioVersion for the Istio sidecar.
    	IstioVersion string
    	// IP is the requester's ip address
    	IP string
    	// rawBody gives a map of all key/values in the body of the response.
    	rawBody         map[string]string
    	RequestHeaders  http.Header
    	ResponseHeaders http.Header
    }
    
    // Count occurrences of the given text within the body of this response.
    func (r Response) Count(text string) int {
    	return strings.Count(r.RawContent, text)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm.go

    import (
    	"sort"
    
    	structuralschema "k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // CoerceOptions gives the ability to ReturnUnknownFieldPaths for fields
    // unrecognized by the schema or DropInvalidFields for fields that are a part
    // of the schema, but are malformed.
    type CoerceOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/index.md

        The most complex problem is building an authentication/authorization provider like those, but **FastAPI** gives you the tools to do it easily, while doing the heavy lifting for you.
    
    ## **FastAPI** utilities
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top