Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,335 for gives (0.06 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. 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)
  5. operator/pkg/helmreconciler/common.go

    	componentNameToListMap map[name.ComponentName][]name.ComponentName
    )
    
    var (
    	// ComponentDependencies is a tree of component dependencies. The semantics are ComponentDependencies[cname] gives
    	// the subtree of components that must wait for cname to be installed before starting installation themselves.
    	ComponentDependencies = componentNameToListMap{
    		name.PilotComponentName: {
    			name.CNIComponentName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/kube/client_factory.go

    }
    
    type PartialFactory interface {
    	rESTClientGetter
    
    	// DynamicClient returns a dynamic client ready for use
    	DynamicClient() (dynamic.Interface, error)
    
    	// KubernetesClientSet gives you back an external clientset
    	KubernetesClientSet() (*kubernetes.Clientset, error)
    
    	// Returns a RESTClient for accessing Kubernetes resources or an error.
    	RESTClient() (*rest.RESTClient, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/runtime/arena_test.go

    		if parallel {
    			t.Parallel()
    		}
    
    		// Allocate and write data, enough to exhaust the arena.
    		//
    		// This is an underestimate, likely leaving some space in the arena. That's a good thing,
    		// because it gives us coverage of boundary cases.
    		n := int(UserArenaChunkBytes / unsafe.Sizeof(*value))
    		if n == 0 {
    			n = 1
    		}
    
    		// Create a new arena and do a bunch of operations on it.
    		arena := NewUserArena()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

            run "signCustomFiles"
    
            then:
            skipped(":signCustomFiles")
        }
    
        def "trying to sign a task that isn't an archive task gives nice enough message"() {
            given:
            buildFile << """
                signing {
                    ${signingConfiguration()}
                    sign clean
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat.txt

    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout m_all.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top