Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for Modular (0.19 sec)

  1. src/math/big/prime.go

    	// "It is also possible to recover U_n using Crandall and Pomerance equation 3.13:
    	// U_n = D^-1 (2V_{n+1} - PV_n) allowing us to run the full extra-strong test
    	// at the cost of a single modular inversion. This computation is easy and fast in GMP,
    	// so we can get the full extra-strong test at essentially the same performance as the
    	// almost extra strong test."
    
    	// Compute Lucas sequence V_s(b, 1), where:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  2. .bazelrc

    # For projects which use TensorFlow as part of a Bazel build process, putting
    # nothing in a bazelrc will default to a monolithic build. The following line
    # opts in to modular op registration support by default.
    build --define framework_shared_object=true
    build --define tsl_protobuf_header_only=true
    
    build --define=use_fast_cpp_protos=true
    build --define=allow_oversize_protos=true
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

            }
            javaModulesMultiProject {
                sampleDirectory = samplesRoot.dir("java/modules-multi-project")
                displayName = "Building Java Modules"
                description = "Build Java Modules and a modular Java application."
                category = "Java Modules"
                common {
                    from(templates.javaApplicationAsSubproject)
                    from(templates.javaListLibraryAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    By applying plugins, users can easily add new features to their build process without having to write complex code from scratch.
    
    This plugin-based approach allows Gradle to be lightweight and modular.
    It also promotes code reuse and maintainability, as plugins can be shared across projects or within an organization.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            succeeds("run")
    
            then:
            executed(':compileJava', ':processResources', ':classes', ':run')
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "runs the jar for modular applications"() {
            given:
            configureMainModule()
    
            when:
            succeeds("run")
    
            then:
            executed(':compileJava', ':processResources', ':classes', ':jar', ':run')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

             * a * b == aHi * bHi * 2^64 + (aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo.
             *       == (aHi * bHi * 2^32 + aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo
             *
             * We carry out this computation in modular arithmetic. Since times2ToThe32Mod accepts any
             * unsigned long, we don't have to do a mod on every operation, only when intermediate
             * results can exceed 2^63.
             */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

             * a * b == aHi * bHi * 2^64 + (aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo.
             *       == (aHi * bHi * 2^32 + aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo
             *
             * We carry out this computation in modular arithmetic. Since times2ToThe32Mod accepts any
             * unsigned long, we don't have to do a mod on every operation, only when intermediate
             * results can exceed 2^63.
             */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    # Architecture of Istiod
    
    This document describes the high level architecture of the Istio control plane, Istiod.
    Istiod is structured as a modular monolith, housing a wide range of functionality from certificate signing, proxy configuration (XDS), traditional Kubernetes controllers, and more.
    
    ## Proxy Configuration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/magic.go

    // and it is further elaborated in "Hacker's Delight" by Warren Section 10-17
    //
    // The first thing to note is that for odd integers, exact division can be computed
    // by using the modular inverse with respect to the word size 2^n.
    //
    // Given c, compute m such that (c * m) mod 2^n == 1
    // Then if c divides x (x%c ==0), the quotient is given by q = x/c == x*m mod 2^n
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. docs/en/docs/alternatives.md

    It is very simple and intuitive. It's designed to be easily extensible, and have modular components.
    
    It has:
    
    * Seriously impressive performance.
    * WebSocket support.
    * In-process background tasks.
    * Startup and shutdown events.
    * Test client built on HTTPX.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top