Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Undo (0.29 sec)

  1. src/runtime/os_windows.go

    	stackcheck()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	mp := getg().m
    	lock(&mp.threadLock)
    	if mp.thread != 0 {
    		stdcall1(_CloseHandle, mp.thread)
    		mp.thread = 0
    	}
    	unlock(&mp.threadLock)
    
    	mp.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. 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)
  7. src/os/file.go

    	}
    	f, err := Open(fullname)
    	if err != nil {
    		// DirFS takes a string appropriate for GOOS,
    		// while the name argument here is always slash separated.
    		// dir.join will have mixed the two; undo that for
    		// error reporting.
    		err.(*PathError).Path = name
    		return nil, err
    	}
    	return f, nil
    }
    
    // The ReadFile method calls the [ReadFile] function for the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      pm.addPass(mlir::createInlinerPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateDropWhileShapeInvariantPass());
      // Create a replicated TensorList initialization ops for all of its uses. This
      // pass undo some CSE because shape_inference is not correctly able to
      // identify the shapes of TensorList initialization ops.
      // This pass requires CanonicalizerPass before
      // CreateTensorListOpsDecompositionPass for clean-ups.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    				return errDiskNotFound
    			}
    			return disks[index].RenameFile(ctx, srcBucket, srcEntry, dstBucket, dstEntry)
    		}, index)
    	}
    
    	// Wait for all renames to finish.
    	errs := g.Wait()
    
    	// Do not need to undo partial successful operation since those will be cleaned up
    	// in 24hrs via multipart cleaner, never rename() back to `.minio.sys/tmp` as there
    	// is no way to clean them.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    	for i := range sigtable {
    		if !blockableSig(uint32(i)) {
    			sigdelset(&nmask, i)
    		}
    	}
    	sigprocmask(_SIG_SETMASK, &nmask, nil)
    }
    
    // unminitSignals is called from dropm, via unminit, to undo the
    // effect of calling minit on a non-Go thread.
    //
    //go:nosplit
    func unminitSignals() {
    	if getg().m.newSigstack {
    		st := stackt{ss_flags: _SS_DISABLE}
    		sigaltstack(&st, nil)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top