Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,596 for forced (0.12 sec)

  1. src/cmd/compile/internal/test/testdata/fp_test.go

    		expect32(t, "i", i, float32(float64(1.5e-45)))
    	}
    }
    
    func multiplyAdd(t *testing.T) {
    	{
    		// Test that a multiply-accumulate operation with intermediate
    		// rounding forced by a float32() cast produces the expected
    		// result.
    		// Test cases generated experimentally on a system (s390x) that
    		// supports fused multiply-add instructions.
    		var tests = [...]struct{ x, y, z, res float32 }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  2. src/math/big/prime.go

    // Miller-Rabin primality test, using pseudo-randomly chosen bases.
    // If force2 is true, one of the rounds is forced to use base 2.
    // See Handbook of Applied Cryptography, p. 139, Algorithm 4.24.
    // The number n is known to be non-zero.
    func (n nat) probablyPrimeMillerRabin(reps int, force2 bool) bool {
    	nm1 := nat(nil).sub(n, natOne)
    	// determine q, k such that nm1 = q << k
    	k := nm1.trailingZeroBits()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. docs/bucket/versioning/README.md

    Spark/Hadoop workloads which use Hadoop MR Committer v1/v2 algorithm upload objects to a temporary prefix in a bucket. These objects are 'renamed' to a different prefix on Job commit. Object storage admins are forced to configure separate ILM policies to expire these objects and their versions to reclaim space.
    
    ### Solution
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

    }
    
    dependencies {
      implementation 'gradle:foo:1.0', 'gradle:bar:1.0', 'gradle:baz:1.0'
    }
    
    configurations.all {
      exclude module: 'bar' //an exclusion
      resolutionStrategy.force 'gradle:baz:2.0' //forced module
    }
            """
    
            def classpath = getClasspath()
            classpath.assertHasLibs('foo-1.0.jar', 'baz-2.0.jar')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

        def "task with nested property defined by non-serializable Java lambda fails the build"() {
            // With configuration cache, all lambdas are forced to be serializable, so there won't be anything to report.
            Assume.assumeTrue(GradleContextualExecuter.isNotConfigCache())
    
            setupTaskClassWithConsumerProperty()
            file("buildSrc/src/main/java/Lambdas.java") <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public boolean isRerunTasks() {
            return rerunTasks;
        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public void setRerunTasks(boolean rerunTasks) {
            this.rerunTasks = rerunTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/runtime/malloc_test.go

    	. "runtime"
    	"strings"
    	"sync/atomic"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    var testMemStatsCount int
    
    func TestMemStats(t *testing.T) {
    	testMemStatsCount++
    
    	// Make sure there's at least one forced GC.
    	GC()
    
    	// Test that MemStats has sane values.
    	st := new(MemStats)
    	ReadMemStats(st)
    
    	nz := func(x any) error {
    		if x != reflect.Zero(reflect.TypeOf(x)).Interface() {
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // invoke CodecForVersions. Callers that need only to read data should use UniversalDecoder().
    //
    // TODO: make this call exist only in pkg/api, and initialize it with the set of default versions.
    // All other callers will be forced to request a Codec directly.
    func (f CodecFactory) LegacyCodec(version ...schema.GroupVersion) runtime.Codec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=0, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup is still forced up to forceLiveLookupTTL
    	fakeClock.Step(forceLiveLookupTTL)
    
    	// verify create operations in the namespace cause an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                            'org.gradle.category': 'enforced-platform',
                            'org.gradle.status': 'release',
                        ])
                        module("org:foo:1.0")
                        noArtifacts()
                    }
                    edge('org:foo:1.1', 'org:foo:1.0') {
                        forced()
                        configuration = 'api'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top