Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for overlapping (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	var backHand [8]int
    	// Deal into a data structure, so that the order of visit below is not necessarily the order of the deal.
    	// This removes bias in the case of flows with overlapping hands.
    	hand := qs.dealer.DealIntoHand(hashValue, backHand[:])
    	handSize := len(hand)
    	offset := qs.enqueues % handSize
    	qs.enqueues++
    	bestQueueIdx := -1
    	minQueueSeatSeconds := fqrequest.MaxSeatSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    Instead of creating new storage for the remainders and copying digits from u
    as indicated by the arrows, we use u's storage directly as both the source
    and destination of the subtractions, so that the remainders overwrite
    successive overlapping sections of u as the division proceeds, using a slice
    of u to identify the current section. This avoids all the copying as well as
    shifting of remainders.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	//
    	// In the second case, multiple services may be implemented by the same physical port number,
    	// though with a different ServicePort and IstioEndpoint for each.  If any of these overlapping
    	// services are not HTTP or H2-based, behavior is undefined, since the listener may not be able to
    	// determine the intended destination of a connection without a Host header on the request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. src/image/draw/draw.go

    		// point, then we compose the rows in bottom-up order instead of
    		// top-down. Unlike the drawCopyOver function, we don't have to check
    		// the x coordinates because the built-in copy function can handle
    		// overlapping slices.
    		d0 = (dy - 1) * dstStride
    		s0 = (dy - 1) * srcStride
    		ddelta = -dstStride
    		sdelta = -srcStride
    	}
    	for ; dy > 0; dy-- {
    		copy(dstPix[d0:d0+bytesPerRow], srcPix[s0:s0+bytesPerRow])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/regexp/regexp.go

    // the matched text. Their names are matched by this regular expression:
    //
    //	Find(All)?(String)?(Submatch)?(Index)?
    //
    // If 'All' is present, the routine matches successive non-overlapping
    // matches of the entire expression. Empty matches abutting a preceding
    // match are ignored. The return value is a slice containing the successive
    // return values of the corresponding non-'All' routine. These routines take
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    	PXOR	runtime·aeskeysched+16(SB), X1
    	PXOR	runtime·aeskeysched+32(SB), X2
    	PXOR	runtime·aeskeysched+48(SB), X3
    	AESENC	X1, X1
    	AESENC	X2, X2
    	AESENC	X3, X3
    
    	// start with last (possibly overlapping) block
    	MOVOU	-64(AX)(BX*1), X4
    	MOVOU	-48(AX)(BX*1), X5
    	MOVOU	-32(AX)(BX*1), X6
    	MOVOU	-16(AX)(BX*1), X7
    
    	// scramble state once
    	AESENC	X0, X4
    	AESENC	X1, X5
    	AESENC	X2, X6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

            return DocumentOverlayResult(resultDocument, overlayOriginContainer, overlayResolutionContainer)
        }
    }
    
    
    /**
     * Represents the results of overlaying declarative documents.
     * * [document] is the resulting document content;
     * * [overlayNodeOriginContainer] tells where a node comes from – overlay, underlay, or combined.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. operator/pkg/manifest/shared.go

    	if sfp := GetValueForSetFlag(setFlags, "installPackagePath"); sfp != "" {
    		// set flag installPackagePath has the highest precedence, if set.
    		installPackagePath = sfp
    	}
    
    	// To generate the base profileOrPath for overlaying with user values, we need the installPackagePath where the profiles
    	// can be found, and the selected profileOrPath. Both of these can come from either the user overlay file or --set flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top