Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,334 for that (0.06 sec)

  1. src/math/big/natdiv.go

    			vn2 := v[n-2]
    			x1, x2 := mulWW(qhat, vn2)
    			ujn2 := u[j+n-2]
    			for greaterThan(x1, x2, rhat, ujn2) { // x1x2 > r̂ u[j+n-2]
    				qhat--
    				prevRhat := rhat
    				rhat += vn1
    				// If r̂  overflows, then
    				// r̂ u[j+n-2]v[n-1] is now definitely > x1 x2.
    				if rhat < prevRhat {
    					break
    				}
    				// TODO(rsc): No need for a full mulWW.
    				// x2 += vn2; if x2 overflows, x1++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

       *   <li>have equal funnels
       * </ul>
       *
       * @param that The Bloom filter to check for compatibility.
       * @since 15.0
       */
      public boolean isCompatible(BloomFilter<T> that) {
        checkNotNull(that);
        return this != that
            && this.numHashFunctions == that.numHashFunctions
            && this.bitSize() == that.bitSize()
            && this.strategy.equals(that.strategy)
            && this.funnel.equals(that.funnel);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

        /**
         * Asserts that there is a failure present with the given description (ie the bit after '* What went wrong').
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         */
        ExecutionFailure assertThatDescription(Matcher<? super String> matcher);
    
        /**
         * Asserts that there all failures match the given description (ie the bit after '* What went wrong').
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Implement inter-project dependencies.
    +
    Some projects in your multi-project build will depend on artifacts produced by one or more other projects in that build.
    Such projects need to ensure that the projects they depend on have produced their artifacts and that the paths to those artifacts are known.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    This doesn't mean that you need to verify every artifact at every stage, although doing so can help you quickly identify the source of a problem.
    You should focus on the critical output such as final reports and the artifacts that are published or deployed.
    +
    You will need to factor in some inherent differences in the build output that Gradle produces compared to Maven.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. docs/en/docs/help-fastapi.md

    * Then check that the tests **pass** after the PR. ✅
    
    * Many PRs don't have tests, you can **remind** them to add tests, or you can even **suggest** some tests yourself. That's one of the things that consume most time and you can help a lot with that.
    
    * Then also comment what you tried, that way I'll know that you checked it. 🤓
    
    ## Create a Pull Request
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/events.md

    This can be very useful for setting up **resources** that you need to use for the whole app, and that are **shared** among requests, and/or that you need to **clean up** afterwards. For example, a database connection pool, or loading a shared machine learning model.
    
    ## Use Case
    
    Let's start with an example **use case** and then see how to solve it with this.
    
    Let's imagine that you have some **machine learning models** that you want to use to handle requests. 🤖
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.api.tasks.AbstractExecTask> extends/implements org.gradle.api.internal.ConventionTask that is Gradle Internal API in (AbstractExecTask.java:0)
    Class <org.gradle.api.tasks.Delete> extends/implements org.gradle.api.internal.ConventionTask that is Gradle Internal API in (Delete.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    	// used for allocation of a ResourceClaim that uses this class.
    	//
    	// Resource drivers have a unique name in forward domain order
    	// (acme.example.com).
    	DriverName string
    
    	// ParametersRef references an arbitrary separate object that may hold
    	// parameters that will be used by the driver when allocating a
    	// resource that uses this class. A dynamic resource driver can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    This technique is not that different from what Android Studio produces when creating a new build.
    The main difference is that the subprojects' build scripts in the above sample declare their plugins using the `plugins {}` block. This means that you can use type-safe accessors for the model elements that they contribute.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top