Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for died (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Task.java

        /**
         * Sets whether the task actually did any work.  Most built-in tasks will set this automatically, but
         * it may be useful to manually indicate this for custom user tasks.
         * @param didWork indicates if the task did any work
         */
        void setDidWork(boolean didWork);
    
        /**
         * <p>Checks if the task actually did any work.  Even if a Task executes, it may determine that it has nothing to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. src/runtime/map_fast32.go

    			if k != key {
    				continue
    			}
    			inserti = i
    			insertb = b
    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                ));
            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                ImmutableAttributes baseAttributes = resolutionAccess.getAttributes();
    
                // The user did not specify any attributes. Use the original request attributes.
                if (viewAttributes.isEmpty()) {
                    return baseAttributes;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/time/tick_test.go

    				// in the hopes it will recover.
    				Sleep(Second / 2)
    			}
    			continue
    		}
    		// Now test that the ticker stopped.
    		Sleep(2 * delta)
    		select {
    		case <-ticker.C:
    			errs = append(errs, "Ticker did not shut down")
    			continue
    		default:
    			// ok
    		}
    
    		// Test passed, so all done.
    		if len(errs) > 0 {
    			t.Logf("saw %d errors, ignoring to avoid flakiness", len(errs))
    			logErrs()
    		}
    
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. docs/en/docs/help-fastapi.md

    ### Check the code
    
    * Check and read the code, see if it makes sense, **run it locally** and see if it actually solves the problem.
    
    * Then **comment** saying that you did that, that's how I will know you really checked it.
    
    !!! info
        Unfortunately, I can't simply trust PRs that just have several approvals.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin.go

    //
    // The stacks obtained from the hung child processes are in
    // libSystem_atfork_child, which is supposed to reinitialize various
    // parts of the C library in the new process.
    //
    // One common stack dies in _notify_fork_child calling _notify_globals
    // (inlined) calling _os_alloc_once, because _os_alloc_once detects that
    // the once lock is held by the parent process and then calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    // ewise(tpose(x), y) -> tpose(ewise(x, tpose^{-1}(y)))
    //  iff y is const and tpose(x) has one use.
    //
    // Proof:
    // Since y is const, tpose(y) will be folded at compile time, since
    // tpose(x) has one use it will be DCEd, #tposes unchanged.
    class CommuteTransposeWithEwiseOps : public RewritePattern {
     public:
      explicit CommuteTransposeWithEwiseOps(MLIRContext *context)
          : RewritePattern(MatchAnyOpTypeTag(), /*benefit=*/1, context) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    	}
    	if want.ListenerMatched != "" && want.ListenerMatched != r.ListenerMatched {
    		t.Errorf("want listener matched %q got %q", want.ListenerMatched, r.ListenerMatched)
    	} else {
    		// Populate each field in case we did not care about it. This avoids confusing errors when we have fields
    		// we don't care about in the test that are present in the result.
    		want.ListenerMatched = r.ListenerMatched
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/runtime/metrics_test.go

    	if isGC {
    		if got := sampleCount(stoppingGC); got <= baselineStartGC {
    			t.Errorf("/sched/pauses/stopping/gc:seconds sample count %d did not increase from baseline of %d", got, baselineStartGC)
    		}
    		if got := sampleCount(totalGC); got <= baselineTotalGC {
    			t.Errorf("/sched/pauses/total/gc:seconds sample count %d did not increase from baseline of %d", got, baselineTotalGC)
    		}
    
    		if got := sampleCount(stoppingOther); got != baselineStartOther {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/runtime/mgclimit.go

    func (l *gcCPULimiterState) startGCTransition(enableGC bool, now int64) {
    	if !l.tryLock() {
    		// This must happen during a STW, so we can't fail to acquire the lock.
    		// If we did, something went wrong. Throw.
    		throw("failed to acquire lock to start a GC transition")
    	}
    	if l.gcEnabled == enableGC {
    		throw("transitioning GC to the same state as before?")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top