Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for avoiding (0.17 sec)

  1. manifests/charts/gateway/README.md

    * Utilizes Gateway injection, simplifying upgrades, allowing gateways to run in any namespace, and avoiding repeating config for sidecars and gateways.
    * Published to official Istio Helm repository.
    * Single chart for all gateways (Ingress, Egress, East West).
    
    #### General concerns
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/image/jpeg/huffman.go

    // Huffman data.
    var errShortHuffmanData = FormatError("short Huffman data")
    
    // ensureNBits reads bytes from the byte buffer to ensure that d.bits.n is at
    // least n. For best performance (avoiding function calls inside hot loops),
    // the caller is the one responsible for first checking that d.bits.n < n.
    func (d *decoder) ensureNBits(n int32) error {
    	for {
    		c, err := d.readByteStuffedByte()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    [[sec:internal]]
    == 1. Internal
    
    _Internal_ features are not designed for public use and are only intended to be used by Gradle itself. They can change in any way at any point in time without any notice.
    Therefore, we recommend avoiding the use of such features.
    _Internal_ features are not documented.
    If it appears in this User Manual, the DSL Reference, or the API Reference, then the feature is not _internal_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    		// We are avoiding the atomic load to keep this path
    		// as lightweight as absolutely possible.
    		// (The atomic load is free on x86 but not free elsewhere.)
    		next := c.gp
    		if next.ptr() == nil {
    			throw("coroswitch on exited coro")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    type allocProblemItem struct {
    	target     float64
    	lowerBound float64
    	upperBound float64
    }
    
    // relativeAllocItem is like allocProblemItem but with target avoiding zero and the bounds divided by the target
    type relativeAllocItem struct {
    	target             float64
    	relativeLowerBound float64
    	relativeUpperBound float64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/cse.go

    	for {
    		changed := false
    
    		// partition can grow in the loop. By not using a range loop here,
    		// we process new additions as they arrive, avoiding O(n^2) behavior.
    		for i := 0; i < len(partition); i++ {
    			e := partition[i]
    
    			if opcodeTable[e[0].Op].commutative {
    				// Order the first two args before comparison.
    				for _, v := range e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top