Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for Undo (0.16 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          mlir::mhlo::createFlattenTuplePass());
    
      mlir::odml::AddMhloOptimizationPasses(
          pass_manager,
          /*add_fold_broadcast_pass=*/pass_config.enable_stablehlo_quantizer);
    
      // Undo the MHLO::BroadcastInDimOp folding pattern on splat constants. This
      // pass must be added right before the legalization because pattern rewriter
      // driver applies folding by default.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    		// TODO(mknyszek): Remove this when we no longer have
    		// caller reserved spill space.
    		p.dstSpill = alignUp(p.dstSpill, uintptr(t.Align_))
    		p.dstSpill += t.Size_
    	} else {
    		// Register assignment failed.
    		// Undo the work and stack assign.
    		p.parts = oldParts
    
    		// The Go ABI aligns arguments.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    
    		// Copy just the size of the argument. Note that this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top