Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for forced (0.24 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. 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)
  9. src/crypto/tls/handshake_client_test.go

    		return nil, nil, nil, nil, err
    	}
    
    	// OpenSSL does print an "ACCEPT" banner, but it does so *before*
    	// opening the listening socket, so we can't use that to wait until it
    	// has started listening. Thus we are forced to poll until we get a
    	// connection.
    	var tcpConn net.Conn
    	for i := uint(0); i < 5; i++ {
    		tcpConn, err = net.DialTCP("tcp", nil, &net.TCPAddr{
    			IP:   net.IPv4(127, 0, 0, 1),
    			Port: serverPort,
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    			// address of a local variable from being forced to schedule
    			// before its corresponding VarDef.
    			// See issue 28445.
    			//   v1 = LOAD ...
    			//   v2 = VARDEF
    			//   v3 = LEAQ
    			//   v4 = CMPQ v1 v3
    			// We don't want to combine the CMPQ with the load, because
    			// that would force the CMPQ to schedule before the VARDEF, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top