Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 166 for Undo (2.99 sec)

  1. src/image/gif/reader.go

    	// Check that the color indexes are inside the palette.
    	if len(m.Palette) < 256 {
    		for _, pixel := range m.Pix {
    			if int(pixel) >= len(m.Palette) {
    				return errBadPixel
    			}
    		}
    	}
    
    	// Undo the interlacing if necessary.
    	if d.imageFields&fInterlace != 0 {
    		uninterlace(m)
    	}
    
    	if keepAllFrames || len(d.image) == 0 {
    		d.image = append(d.image, m)
    		d.delay = append(d.delay, d.delayTime)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/events_test.go

    					APIVersion: "v1",
    					Kind:       "Node",
    				},
    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Undo",
    				Reason:              "Yeees",
    				Type:                "Normal",
    			},
    			oldEvent: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            if (expression != adjustedResolutionExpression) {
                // Type alias detection.
                //
                // If we adjusted resolution to get a constructor instead of a class, we need to undo that
                // if the class is defined as a type alias. We can detect that situation when the constructed type
                // is different from the return type of the constructor.
                //
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/scoring.go

    	if isMust(typ) {
    		if mask&typ != 0 {
    			return score, mask
    		}
    		may := mustToMay(typ)
    		if mask&may != 0 {
    			// promote may to must, so undo may
    			score -= adjValue(may)
    			mask &^= may
    		}
    	} else if isMay(typ) {
    		must := mayToMust(typ)
    		if mask&(must|typ) != 0 {
    			return score, mask
    		}
    	}
    	if mask&typ == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    		// via os.O_TRUNC. Truncating only after writing ensures that a second write
    		// of the same content to the same file is idempotent, and does not — even
    		// temporarily! — undo the effect of the first write.
    		err = f.Truncate(int64(len(entry)))
    	}
    	if closeErr := f.Close(); err == nil {
    		err = closeErr
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    		start = start.next
    	}
    	s := d.free
    	if s != nil {
    		d.free = s.next
    	} else {
    		s = new(stack)
    	}
    	s.kind = stkEOF
    	s.next = start.next
    	start.next = s
    }
    
    // Undo a pushEOF.
    // The element must have been finished, so the EOF should be at the top of the stack.
    func (d *Decoder) popEOF() bool {
    	if d.stk == nil || d.stk.kind != stkEOF {
    		return false
    	}
    	d.pop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_4x.md

     *  Fix: Don't crash when converting a `HttpUrl` instance with an unresolvable hostname to a URI.
        The new behavior strips invalid characters like `"` and `{` from the hostname before converting.
    
     *  Fix: Undo a performance regression introduced in OkHttp 4.0 caused by differences in behavior
        between Kotlin's `assert()` and Java's `assert()`. (Kotlin always evaluates the argument; Java
        only does when assertions are enabled.)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/runtime/traceruntime.go

    	// gen values are being used.
    	//
    	// Because we're doing this load again, it also means that the trace
    	// might end up being disabled when we load it. In that case we need to undo
    	// what we did and bail.
    	gen := trace.gen.Load()
    	if gen == 0 {
    		mp.trace.seqlock.Add(1)
    		releasem(mp)
    		return traceLocker{}
    	}
    	return traceLocker{mp, gen}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		if old.vid == 0 { // checkpointBound
    			break
    		}
    		if old.limit == noLimit {
    			delete(ft.limits, old.vid)
    		} else {
    			ft.limits[old.vid] = old.limit
    		}
    	}
    	ft.orderS.Undo()
    	ft.orderU.Undo()
    }
    
    func lessByID(v, w *Value) bool {
    	if v == nil && w == nil {
    		// Should not happen, but just in case.
    		return false
    	}
    	if v == nil {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    		//
    		// In the case where a Go call originates from C, ncgo is 0
    		// and there is no matching cgocall to end.
    		if mp.ncgo > 0 {
    			mp.incgo = false
    			mp.ncgo--
    			osPreemptExtExit(mp)
    		}
    
    		// Undo the call to lockOSThread in cgocallbackg, only on the
    		// panicking path. In normal return case cgocallbackg will call
    		// unlockOSThread, ensuring no preemption point after the unlock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top