Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 188 for sweeping (0.17 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    	// Everything else is just heuristics.
    
    	ix := h.inBlockUses[x.ID]
    	iy := h.inBlockUses[y.ID]
    	if ix != iy {
    		return ix // values with in-block uses come earlier
    	}
    
    	if x.Pos != y.Pos { // Favor in-order line stepping
    		return x.Pos.Before(y.Pos)
    	}
    	if x.Op != OpPhi {
    		if c := len(x.Args) - len(y.Args); c != 0 {
    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    addition, it records which functions are printf wrappers for use by
    later analysis passes to identify other printf wrappers by induction.
    A result such as “f is a printf wrapper” that is not interesting by
    itself but serves as a stepping stone to an interesting result (such as
    a diagnostic) is called a [Fact].
    
    The analysis API allows an analysis to define new types of facts, to
    associate facts of these types with objects (named entities) declared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    Property instances carry information about which task, if any, produces their value.
    Build authors do not need to worry about keeping task dependencies in sync with configuration changes.
    3. *Improved Build Performance:* Avoids resource-intensive work during configuration, impacting build performance positively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    		return
    	}
    
    	raise(sig)
    
    	// Give the signal a chance to be delivered.
    	// In almost all real cases the program is about to crash,
    	// so sleeping here is not a waste of time.
    	usleep(1000)
    
    	// If the signal didn't cause the program to exit, restore the
    	// Go signal handler and carry on.
    	//
    	// We may receive another instance of the signal before we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.cc

    // XlaDeviceAllocator is created on demand and is associated with a
    // XlaDevice. It outlives the device itself (for instance, the buffer
    // backing a tensor holds a pointer to the allocator for book-keeping,
    // and this buffer can outlast the device).
    class XlaDeviceAllocatorState {
     public:
      // Creates or returns a cached XlaDeviceAllocator for a given
      // backend and device_ordinal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    	// Typically, this should be set to 'false' after response; keeping it true would likely result in an endless loop.
    	AlwaysRespond bool
    
    	// LastResources tracks the contents of the last push.
    	// This field is extremely expensive to maintain and is typically disabled
    	LastResources Resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Collections2.java

       * first permutation will be in ascending order, and the last will be in descending order.
       *
       * <p>Elements that compare equal are considered equal and no new permutations are created by
       * swapping them.
       *
       * <p>An empty iterable has only one permutation, which is an empty list.
       *
       * @param elements the original iterable whose elements have to be permuted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            Xpp3Dom recessiveConfig = Xpp3DomBuilder.build(new StringReader(recessiveStr));
    
            // same DOMs as testShouldRemoveEntireElementWithAttributesAndChildren(), swapping dominant <--> recessive
            Xpp3Dom result = Xpp3Dom.mergeXpp3Dom(recessiveConfig, dominantConfig);
    
            assertEquals(recessiveConfig.toString(), result.toString());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction_test.go

    					}
    
    					sleepTime := item.expectedDeleteTimes[i].timestamp - time.Since(startedAt) + increment
    					if sleepTime < 0 {
    						sleepTime = 0
    					}
    					t.Logf("Sleeping for %v", sleepTime)
    					time.Sleep(sleepTime)
    				}
    
    				for delay, podName := range item.expectedDeleteTimes[i].names {
    					deleted := false
    					for _, action := range fakeClientset.Actions() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    }
    
    type schedt struct {
    	goidgen   atomic.Uint64
    	lastpoll  atomic.Int64 // time of last network poll, 0 if currently polling
    	pollUntil atomic.Int64 // time to which current poll is sleeping
    
    	lock mutex
    
    	// When increasing nmidle, nmidlelocked, nmsys, or nmfreed, be
    	// sure to call checkdead().
    
    	midle        muintptr // idle m's waiting for work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top