Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,715 for forced (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | The dependency has a dynamic version and some versions did not match the <<variant_model#sec:variant-aware-matching, requested attributes>>.
    
    | Forced
    | The build enforces the version of the dependency through an enforced platform or resolution strategy.
    |===
    
    If multiple selection reasons exist, the insight report lists all of them.
    
    == Troubleshooting
    
    [[sec:resolving-version-conflict]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/jcifs/http/NtlmHttpFilter.java

         *            initiated by the client (MSIE post requests after successful NTLM SSP
         *            authentication). If false and the user has not been authenticated yet
         *            the client will be forced to send an authentication (server sends
         *            HttpServletResponse.SC_UNAUTHORIZED).
         * @return True if the negotiation is complete, otherwise false
         * @throws ServletException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top