Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for because3 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. src/runtime/mbitmap.go

    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    // s.heapBits()[i] boundaries).
    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	pid := ProcID(ev.args[0])
    	seq := makeSeq(gen, ev.args[1])
    
    	// Try to advance. We might fail here due to sequencing, because the P hasn't
    	// had a status emitted, or because we already have a P and we're in a syscall,
    	// and we haven't observed that it was stolen from us yet.
    	state, ok := o.pStates[pid]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top