Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 864 for Calculate (0.18 sec)

  1. src/crypto/internal/edwards25519/field/fe_alias_test.go

    package field
    
    import (
    	"testing"
    	"testing/quick"
    )
    
    func checkAliasingOneArg(f func(v, x *Element) *Element) func(v, x Element) bool {
    	return func(v, x Element) bool {
    		x1, v1 := x, x
    
    		// Calculate a reference f(x) without aliasing.
    		if out := f(&v, &x); out != &v && isInBounds(out) {
    			return false
    		}
    
    		// Test aliasing the argument and the receiver.
    		if out := f(&v1, &v1); out != &v1 || v1 != v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * These are more expensive to calculate than regular inputs as they need to be calculated even if the execution of the work is short circuited by an identity cache.
         * They also cannot reuse snapshots taken during previous executions.
         * Because of these reasons only capture inputs as identity if they are actually used to calculate the identity of the work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaDataTest.groovy

    import gradlebuild.docs.dsl.source.model.TypeMetaData
    
    class ClassLinkMetaDataTest extends Specification {
    
        public static final String SIMPLE_CLASSNAME = 'MyClass'
        public static final String METHOD_NAME = 'calculate'
    
        def "can define and look up overloaded methods"() {
            given:
            ClassMetaData classMetaData = new ClassMetaData("org.gradle.$SIMPLE_CLASSNAME")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/IsolatableFactory.java

     *
     * <ul>
     * <li>Create isolated instances from that state to pass to user code, see {@link Isolatable} for more details.</li>
     * <li>Calculate a hash of the state. If you only need to calculate hashes of object graphs, then consider using {@link org.gradle.internal.snapshot.ValueSnapshotter} instead,
     * as that does the same thing but more efficiently.</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderRegistry.java

         * Returns a copy of the filter spec for the Gradle API Classloader.  This is expensive to calculate, so we create it once in
         * the build process and provide it to the worker.
         */
        FilteringClassLoader.Spec getGradleApiFilterSpec();
    
        /**
         * Returns the extension classloader spec for use in worker processes.  This is expensive to calculate, so we create it once in
         * the build process and provide it to the worker.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/crypto/x509/pkcs1.go

    	// We ignore these values, if present, because rsa will calculate them.
    	Dp   *big.Int `asn1:"optional"`
    	Dq   *big.Int `asn1:"optional"`
    	Qinv *big.Int `asn1:"optional"`
    
    	AdditionalPrimes []pkcs1AdditionalRSAPrime `asn1:"optional,omitempty"`
    }
    
    type pkcs1AdditionalRSAPrime struct {
    	Prime *big.Int
    
    	// We ignore these values because rsa will calculate them.
    	Exp   *big.Int
    	Coeff *big.Int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

                            lineNumRevised++;
                        }
                    }
                    next++;
                }
                // Calculate the end line index of the current block in fullDiff
                end = min(end + contextSize + 1, unifiedDiffType.size());
    
                // Calculate the size of the block content in original/revised file
                int blockSizeOrigin = lineNumOrigin - startLineOrigin - (next - end - 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_arm64.s

    	B	indexbytebody<>(SB)
    
    // input:
    //   R0: data
    //   R1: byte to search
    //   R2: data len
    //   R8: address to put result
    TEXT indexbytebody<>(SB),NOSPLIT,$0
    	// Core algorithm:
    	// For each 32-byte chunk we calculate a 64-bit syndrome value,
    	// with two bits per byte. For each tuple, bit 0 is set if the
    	// relevant byte matched the requested character and bit 1 is
    	// not used (faster than using a 32bit syndrome). Since the bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                .runWithFailure()
    
            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':compileJava'.")
                   .assertHasCause("Failed to calculate the value of task ':compileJava' property 'javaCompiler'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            treeGraphOps.size() == 1
            treeGraphOps[0].displayName == "Calculate build tree task graph"
            treeGraphOps[0].parentId == root.id
    
            def taskGraphOps = operations.all(CalculateTaskGraphBuildOperationType)
            taskGraphOps.size() == 2
            taskGraphOps[0].displayName == "Calculate task graph"
            taskGraphOps[0].details.buildPath == ":"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top