Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 157 for conservatively (0.24 sec)

  1. src/runtime/preempt.go

    }
    
    //go:generate go run mkpreempt.go
    
    // asyncPreempt saves all user registers and calls asyncPreempt2.
    //
    // When stack scanning encounters an asyncPreempt frame, it scans that
    // frame and its parent frame conservatively.
    //
    // asyncPreempt is implemented in assembly.
    func asyncPreempt()
    
    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    	if gp.preemptStop {
    		mcall(preemptPark)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    If your project files include symlinks, symlinked files do not benefit from file system-watching optimizations.
    --
    
    == Unsupported File Systems
    
    When enabled by default, file system watching acts conservatively when it encounters content on unsupported file systems.
    This can happen if you mount a project directory or subdirectory from a network drive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/html/template/url.go

    // interaction are considered unsafe. For example, clicking on a "javascript:"
    // link can immediately trigger JavaScript code execution.
    //
    // This filter conservatively assumes that all schemes other than the following
    // are unsafe:
    //   - http:   Navigates to a new website, and may open a new window or tab.
    //     These side effects can be reversed by navigating back to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    				return []string{"invalid date"}
    			}
    			return nil
    		},
    		// Estimated regex size for RFC3339FullDate which is
    		// a date format. Assume a date-time pattern is longer
    		// so use that to conservatively estimate this
    		MaxRegexSize: len(strfmt.DateTimePattern),
    	},
    	"datetime": {
    		Name: "datetime",
    		ValidateFunc: func(s string) []string {
    			if !strfmt.Default.Validates("datetime", s) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        // TFLite flatbuffer schema doesn't distinguish scalar tensor shapes
        // and unranked tensor shapes (i.e. they are both represented as an empty
        // INT32 list), see b/138865275. MLIR importer conservatively treats them as
        // unranked tensor types. Here we set them to scalar tensor types when it is
        // safe.
        if (auto tensor_array_v3_op = dyn_cast<TF::TensorArrayV3Op>(tf_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/math/cmplx/tan.go

    	// trailing zero bits respectively, t should have less than 30 significant bits.
    	//	t < 1<<30  -> floor(x*(1/Pi)+0.5) < 1<<30 -> x < (1<<30-1) * Pi - 0.5
    	// So, conservatively we can take x < 1<<30.
    	const reduceThreshold float64 = 1 << 30
    	if math.Abs(x) < reduceThreshold {
    		// Use Cody-Waite reduction in three parts.
    		const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  7. src/runtime/mgcstack.go

    // of a goroutine.
    type stackScanState struct {
    	// stack limits
    	stack stack
    
    	// conservative indicates that the next frame must be scanned conservatively.
    	// This applies only to the innermost frame at an async safe-point.
    	conservative bool
    
    	// buf contains the set of possible pointers to stack objects.
    	// Organized as a LIFO linked list of buffers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    		// Check for reasons why we may need to compute later expressions
    		// before this assignment happens.
    
    		if name == nil {
    			// Not a direct assignment to a declared variable.
    			// Conservatively assume any memory access might alias.
    			memWrite = true
    			continue
    		}
    
    		if name.Class == ir.PPARAMOUT && ir.CurFunc.HasDefer() {
    			// Assignments to a result parameter in a function with defers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

      }
    
      const XlaResourceOpInfo* op_info = GetResourceOpInfoForOp(n.type_string());
      if (op_info) {
        *out_resource_op_kind = op_info->kind();
        return absl::OkStatus();
      }
    
      // We conservatively assume that functions will both read and write resource
      // variables.  In the future we may consider doing some form of
      // inter-procedural analysis.
      if (MayCallFunction(n, flib_def)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/imports/build.go

    //
    // If tags["*"] is true, then ShouldBuild will consider every
    // build tag except "ignore" to be both true and false for
    // the purpose of satisfying build tags, in order to estimate
    // (conservatively) whether a file could ever possibly be used
    // in any build.
    func ShouldBuild(content []byte, tags map[string]bool) bool {
    	// Identify leading run of // comments and blank lines,
    	// which must be followed by a blank line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top