Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for necessarily (0.15 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    	// nominated pods, we run them when those pods are added to PreFilter state and nodeInfo.
    	// If all filters succeed in this pass, we run them again when these
    	// nominated pods are not added. This second pass is necessary because some
    	// filters such as inter-pod affinity may not pass without the nominated pods.
    	// If there are no nominated pods for the node or if the first run of the
    	// filters fail, we don't run the second pass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val framesThatFillWindow =
          roundUp(Settings.DEFAULT_INITIAL_WINDOW_SIZE, peer.maxOutboundDataLength())
    
        // Write the mocking script. This accepts more data frames than necessary!
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // SETTINGS ACK
        peer.acceptFrame() // SYN_STREAM on stream 1
        for (i in 0 until framesThatFillWindow) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    // required to) continue to call Next until it is exhausted.
    func (o *ordering) Advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) (bool, error) {
    	if o.initialGen == 0 {
    		// Set the initial gen if necessary.
    		o.initialGen = gen
    	}
    
    	var curCtx, newCtx schedCtx
    	curCtx.M = m
    	newCtx.M = m
    
    	var ms *mState
    	if m == NoThread {
    		curCtx.P = NoProc
    		curCtx.G = NoGoroutine
    		newCtx = curCtx
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

      // have two requirements that significantly complicate their design.
      // 1. Cancellation should propagate from the returned future to the input future(s).
      // 2. The returned futures shouldn't unnecessarily 'pin' their inputs after completion.
      //
      // A consequence of these requirements is that the delegate futures cannot be stored in
      // final fields.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    // using a delete-marker and MetaSys entries. It's used to track tiered content of a
    // deleted/overwritten version. This version is visible _only_to the scanner routine, for subsequent deletion.
    // This kind of tracking is necessary since a version's tiered content is deleted asynchronously.
    
    // Backend directory tree structure:
    // disk1/
    // └── bucket
    //     └── object
    //         ├── a192c1d5-9bd5-41fd-9a90-ab10e165398d
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // DaemonSetUpdateStrategy indicates the strategy that the DaemonSet
    // controller will use to perform updates. It includes any additional parameters
    // necessary to perform the update for the indicated strategy.
    type DaemonSetUpdateStrategy struct {
    	// Type of daemon set update. Can be "RollingUpdate" or "OnDelete".
    	// Default is OnDelete.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		p5.To.Reg = out
    		// LWSYNC - Assuming shared data not write-through-required nor
    		// caching-inhibited. See Appendix B.2.1.1 in the ISA 2.07b.
    		// If the operation is a CAS-Release, then synchronization is not necessary.
    		if v.AuxInt != 0 {
    			plwsync2 := s.Prog(ppc64.ALWSYNC)
    			plwsync2.To.Type = obj.TYPE_NONE
    			p2.To.SetTarget(plwsync2)
    		} else {
    			// done (label)
    			p6 := s.Prog(obj.ANOP)
    			p2.To.SetTarget(p6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    // already exist with the configured scheduler, we just return. Otherwise
    // we check if a dummy VS can be configured with the configured scheduler.
    // Kernel modules will be loaded automatically if necessary.
    func CanUseIPVSProxier(ctx context.Context, ipvs utilipvs.Interface, ipsetver IPSetVersioner, scheduler string) error {
    	logger := klog.FromContext(ctx)
    	// BUG: https://github.com/moby/ipvs/issues/27
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    				return ii < ij
    			}
    		}
    		return true
    	})
    	toSort = append(toSort, toDelete...)
    	return toSort, nil
    }
    
    // Returns a (recursive) strategic merge patch, a parallel deletion list if necessary and
    // another list to set the order of the list
    // Only list of primitives with merge strategy will generate a parallel deletion list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    		if sign > 0 {
    			r = appendTable(r, tab)
    		} else {
    			r = appendNegatedTable(r, tab)
    		}
    	} else {
    		// Merge and clean tab and fold in a temporary buffer.
    		// This is necessary for the negative case and just tidy
    		// for the positive case.
    		tmp := p.tmpClass[:0]
    		tmp = appendTable(tmp, tab)
    		tmp = appendTable(tmp, fold)
    		p.tmpClass = tmp
    		tmp = cleanClass(&p.tmpClass)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top