Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for forced (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        selectedByRule()
                        forced()
                        module("org.utils:api:1.3") {
                            selectedByRule()
                            forced()
                        }
                    }
                }
            }
        }
    
        void "forced modules and rules coexist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// mode since proportional sweep should have just finished
    	// sweeping everything, but rounding errors, etc, may leave a
    	// few spans unswept. In forced mode, this is necessary since
    	// GC can be forced at any point in the sweeping cycle.
    	//
    	// We check the transition condition continuously here in case
    	// this G gets delayed in to the next GC cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    // application.
    //
    // scavenger.lock must be held.
    func printScavTrace(releasedBg, releasedEager uintptr, forced bool) {
    	assertLockHeld(&scavenger.lock)
    
    	printlock()
    	print("scav ",
    		releasedBg>>10, " KiB work (bg), ",
    		releasedEager>>10, " KiB work (eager), ",
    		gcController.heapReleased.load()>>10, " KiB now, ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        forced()
                    }
                    edge("org.gradle.test:lib2:3.0.6", "org.gradle.test:lib2:3.0.5") {
                        forced()
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17874")
        def "doesn't support rich versions from version catalogs in force method of resolutionStrategy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    module("org:dep:2.2") {
                        module("org:external:1.4")
                    }
                }
            }
        }
    
        void "takes newest dynamic version when dynamic version forced"() {
            mavenRepo.module("org", "foo", '1.3.0').publish()
    
            mavenRepo.module("org", "foo", '1.4.1').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    // is when assists are enabled and the necessary statistics are
    // available).
    func (c *gcControllerState) revise() {
    	gcPercent := c.gcPercent.Load()
    	if gcPercent < 0 {
    		// If GC is disabled but we're running a forced GC,
    		// act like GOGC is huge for the below calculations.
    		gcPercent = 100000
    	}
    	live := c.heapLive.Load()
    	scan := c.heapScan.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	defer timelog("end", "dist bootstrap")
    
    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        This allows customization without the drawbacks of separate connection
        pools.
    
     *  **OkHttpClient is now stateless.** In the 2.x API `OkHttpClient` had getters
        and setters. Internally each request was forced to make its own complete
        snapshot of the `OkHttpClient` instance to defend against racy configuration
        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPS.BCST 2032(DX), Z28, Z29       // 62611c5058aaf0070000
    	VADDPS.BCST 2032(DX)(AX*2), Z0, Z29  // 62617c5858ac42f0070000
    	VADDPS.BCST 2032(DX)(AX*2), Z1, Z29  // 6261745858ac42f0070000
    	// Forced EVEX encoding due to suffixes.
    	VADDPD.BCST 2032(DX), X0, X0 // 62f1fd185882f0070000
    	VADDPD.BCST 2032(DX), Y0, Y0 // 62f1fd385882f0070000
    	// Test new Z-cases one-by-one.
    	//
    	// Zevex_i_r_k_rm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    			// should be rewritten to:
    			//	for i := 5; 0 < i; i-- {
    			continue
    		}
    
    		if end.Block == ind.Block {
    			// we can't rewrite loops where the condition depends on the loop body
    			// this simple check is forced to work because if this is true a Phi in ind.Block must exists
    			continue
    		}
    
    		check := ind.Block.Controls[0]
    		// invert the check
    		check.Args[0], check.Args[1] = check.Args[1], check.Args[0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top