Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for circle (0.25 sec)

  1. src/main/webapp/js/admin/bootstrap.min.js

    s._element).css("visibility")&&this.next()},t.prev=function(){this._isSliding||this._slide(Q)},t.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(st)&&(_.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisib...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      @SafeVarargs
      public static <T extends @Nullable Object> Iterator<T> cycle(T... elements) {
        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      @SafeVarargs
      public static <T extends @Nullable Object> Iterator<T> cycle(T... elements) {
        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    // gcParkAssist reports whether the assist is now satisfied. If it
    // returns false, the caller must retry the assist.
    func gcParkAssist() bool {
    	lock(&work.assistQueue.lock)
    	// If the GC cycle finished while we were getting the lock,
    	// exit the assist. The cycle can't finish while we hold the
    	// lock.
    	if atomic.Load(&gcBlackenEnabled) == 0 {
    		unlock(&work.assistQueue.lock)
    		return true
    	}
    
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue7525b.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525c.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525d.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525e.go", // types2 reports init cycle error on different line - ok otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/time/time.go

    //	sec = t % 60
    //	if sec < 0 {
    //		sec += 60
    //	}
    //
    // everywhere.
    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "reports direct cycle in configurations"() {
            def configuration = conf()
            def otherConf = conf("other")
            configuration.extendsFrom(otherConf)
    
            when:
            otherConf.extendsFrom(configuration)
    
            then:
            thrown InvalidUserDataException
        }
    
        def "reports indirect cycle in extended configurations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	n.lock.Lock()
    	defer n.lock.Unlock()
    	n.nodeHealths[name] = data
    }
    
    type podUpdateItem struct {
    	namespace string
    	name      string
    }
    
    // Controller is the controller that manages node's life cycle.
    type Controller struct {
    	taintManager *tainteviction.Controller
    
    	podLister         corelisters.PodLister
    	podInformerSynced cache.InformerSynced
    	kubeClient        clientset.Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Cluster* GetClusterForCyclesGraphNode(int node_id) {
        // We have to check `graph_->FindNodeId(node) == nullptr` because we add all
        // nodes in [0, graph_->num_node_ids()) to the cycle detection graph but the
        // TF graph may be missing some node ids.
        if (node_id >= graph_->num_node_ids() ||
            graph_->FindNodeId(node_id) == nullptr) {
          return nullptr;
        }
    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/internal/trace/order.go

    // can happen on completely different threads. We want an explicit
    // partial order edge between start and end here, otherwise we're
    // relying entirely on timestamps to make sure we don't advance a
    // GCEnd for a _different_ GC cycle if timestamps are wildly broken.
    func (o *ordering) advanceGCActive(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	seq := ev.args[0]
    	if gen == o.initialGen {
    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