Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,367 for stops (0.14 sec)

  1. src/go/build/deps_test.go

    	NONE < runtime/race/internal/amd64v3;
    	CGO, runtime/race/internal/amd64v1, runtime/race/internal/amd64v3 < runtime/race;
    
    	# Bulk of the standard library must not use cgo.
    	# The prohibition stops at net and os/user.
    	C !< fmt, go/types, CRYPTO-MATH, log/slog;
    
    	CGO, OS
    	< plugin;
    
    	CGO, FMT
    	< os/user
    	< archive/tar;
    
    	sync
    	< internal/singleflight;
    
    	os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    When system memory is low, Gradle will stop worker daemons to minimize memory consumption.
    
    NOTE: A step-by-step description of converting a normal task action to use the worker API can be found in the section on <<worker_api.adoc#tasks_parallel_worker,developing parallel tasks>>.
    
    == Cancellation and timeouts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one.go

    		metrics.FrameworkExtensionPointDuration.WithLabelValues(metrics.Filter, statusCode.String(), fwk.ProfileName()).Observe(metrics.SinceInSeconds(beginCheckNode))
    	}()
    
    	// Stops searching for more nodes once the configured number of feasible nodes
    	// are found.
    	fwk.Parallelizer().Until(ctx, numAllNodes, checkNode, metrics.Filter)
    	feasibleNodes = feasibleNodes[:feasibleNodesLen]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Splitter.java

       */
      public Splitter omitEmptyStrings() {
        return new Splitter(strategy, true, trimmer, limit);
      }
    
      /**
       * Returns a splitter that behaves equivalently to {@code this} splitter but stops splitting after
       * it reaches the limit. The limit defines the maximum number of items returned by the iterator,
       * or the maximum size of the list returned by {@link #splitToList}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    	pd.wseq++
    	var rg, wg *g
    	pd.publishInfo()
    	delta := int32(0)
    	rg = netpollunblock(pd, 'r', false, &delta)
    	wg = netpollunblock(pd, 'w', false, &delta)
    	if pd.rrun {
    		pd.rt.stop()
    		pd.rrun = false
    	}
    	if pd.wrun {
    		pd.wt.stop()
    		pd.wrun = false
    	}
    	unlock(&pd.lock)
    	if rg != nil {
    		netpollgoready(rg, 3)
    	}
    	if wg != nil {
    		netpollgoready(wg, 3)
    	}
    	netpollAdjustWaiters(delta)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/sync/map.go

    			return false
    		}
    		if e.p.CompareAndSwap(p, nil) {
    			return true
    		}
    	}
    	return false
    }
    
    // Range calls f sequentially for each key and value present in the map.
    // If f returns false, range stops the iteration.
    //
    // Range does not necessarily correspond to any consistent snapshot of the Map's
    // contents: no key will be visited more than once, but if the value for any key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. cmd/admin-heal-ops.go

    	defer h.mutex.RUnlock()
    	// background heal never ends
    	if h.clientToken == bgHealingUUID {
    		return false
    	}
    	return !h.endTime.IsZero()
    }
    
    // stops the heal sequence - safe to call multiple times.
    func (h *healSequence) stop() {
    	h.cancelCtx()
    }
    
    // pushHealResultItem - pushes a heal result item for consumption in
    // the heal-status API. It blocks if there are
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    		return either one or two result values, the second of which
    		is of type error. If the arguments don't match the function
    		or the returned error value is non-nil, execution stops.
    	html
    		Returns the escaped HTML equivalent of the textual
    		representation of its arguments. This function is unavailable
    		in html/template, with a few exceptions.
    	index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            finishedExecuting(second)
            finishedExecuting(first)
    
            then:
            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20508")
        def "stops executing nodes after failure when priority node has already executed"() {
            def node = priorityNode()
            def broken = task("broken", failure: new RuntimeException())
            def task = task("task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/leaderelection_test.go

    	_, stop4 := createElection(t, "pod4", "green", watcher, false, client)
    	close(stop2)
    	close(stop3)
    	close(stop4)
    	// Now that revision "green" has stopped acting as leader, revision "red" should be able to claim lock.
    	_, stop5 := createElection(t, "pod2", "red", watcher, true, client)
    	close(stop5)
    	close(stop)
    	// Revision "green" can reclaim once "red" releases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top