Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 280 for because3 (0.14 sec)

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

                module('kt') alignsTo('2.9.4.1') byPublishedPlatform()
    
                doesNotGetPlatform("org", "platform", "2.7.9") // because of conflict resolution
                doesNotGetPlatform("org", "platform", "2.9.0") // because of conflict resolution
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// to other kinds of GC work, because of how fluid it is. Namely, because the mutator is
    	// *always* free to take it.
    	//
    	// So this calculation is really:
    	//     (heapLive-trigger) / (assistDuration * procs * (1-utilization)) /
    	//         (scanWork) / (assistDuration * procs * (utilization+idleUtilization))
    	//
    	// Note that because we only care about the ratio, assistDuration and procs cancel out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// memory limit and Y to satisfy heap-growth scavenging, and Y > X, then
    	// it's fine to pick Y, because the memory limit is still satisfied).
    	//
    	// It's fine to do this after allocating because we expect any scavenged
    	// pages not to get touched until we return. Simultaneously, it's important
    	// to do this before calling sysUsed because that may commit address space.
    	bytesToScavenge := uintptr(0)
    	forceScavenge := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    // pass my own component because we are already in the process of re-selecting it
                    from.reselect();
                }
            } else {
                for (EdgeState incoming : Lists.newArrayList(incomingEdges)) {
                    if (incoming.getDependencyState().getDependency().isEndorsingStrictVersions()) {
                        // pass my own component because we are already in the process of re-selecting it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            t.message == "Cannot query the value of ${displayName} because it has no value available."
    
            when:
            property.attachOwner(owner(), displayName("<display-name>"))
            property.get()
    
            then:
            def t2 = thrown(MissingValueException)
            t2.message == "Cannot query the value of <display-name> because it has no value available."
    
            when:
            property.set(someValue())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	// arbitrarily, since the value is only read at the end of the
    	// cycle.
    	//
    	// Because of benign races during marking, this number may not
    	// be the exact number of marked bytes, but it should be very
    	// close.
    	//
    	// Put this field here because it needs 64-bit atomic access
    	// (and thus 8-byte alignment even on 32-bit architectures).
    	bytesMarked uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	//
    	// Snapshot allArenas as markArenas. This snapshot is safe because allArenas
    	// is append-only.
    	mheap_.markArenas = mheap_.allArenas[:len(mheap_.allArenas):len(mheap_.allArenas)]
    	work.nSpanRoots = len(mheap_.markArenas) * (pagesPerArena / pagesPerSpanRoot)
    
    	// Scan stacks.
    	//
    	// Gs may be created after this point, but it's okay that we
    	// ignore them because they begin life without any roots, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// there is no delay for the Get. SSA is safe because only
    			// the scheduler updates these fields.
    			spec := resourcev1alpha2apply.PodSchedulingContextSpec()
    			spec.SelectedNode = p.selectedNode
    			if p.potentialNodes != nil {
    				spec.PotentialNodes = *p.potentialNodes
    			} else {
    				// Unchanged. Has to be set because the object that we send
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // underlying map because of how we set things up, but we can do an additional
      // CHECK in this accessor.
      //
      // Returns nullptr if `node_id` is not a compilation candidate.
      Cluster* GetClusterForCyclesGraphNode(int node_id) {
        // We have to check `graph_->FindNodeId(node) == nullptr` because we add all
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    		// These choices reduce the odds of a conservative garbage collector
    		// not collecting memory because some non-pointer block of memory
    		// had a bit pattern that matched a memory address.
    		//
    		// However, on arm64, we ignore all this advice above and slam the
    		// allocation at 0x40 << 32 because when using 4k pages with 3-level
    		// translation buffers, the user address space is limited to 39 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top