Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for conservative (0.62 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // should be revisited for new resource-allocators that might potentially
      // break our currently guaranteed correctness.
      // For context, we are very conservative here compared to
      // `auto_control_deps.py` where it is assumed that allocated resource values
      // NEVER alias. We should align our assumptions in the future.
      static constexpr int64_t kUnknownResourceId = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// freeIndexForScan now so x is seen by the GC
    	// (including conservative scan) as an allocated object.
    	// While this pointer can't escape into user code as a
    	// _live_ pointer until we return, conservative scanning
    	// may find a dead pointer that happens to point into this
    	// object. Delaying this update until now ensures that
    	// conservative scanning considers this pointer dead until
    	// this point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    // statement following stmt is reachable.
    func (d *deadState) findDead(stmt ast.Stmt) {
    	// Is this a labeled goto target?
    	// If so, assume it is reachable due to the goto.
    	// This is slightly conservative, in that we don't
    	// check that the goto is reachable, so
    	//	L: goto L
    	// will not provoke a warning.
    	// But it's good enough.
    	if x, isLabel := stmt.(*ast.LabeledStmt); isLabel && d.hasGoto[x.Label.Name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/go/doc/exports.go

    			// presumably a qualified identifier
    			return &ast.SelectorExpr{
    				Sel: ast.NewIdent(typ.Sel.Name),
    				X:   &ast.Ident{Name: id.Name, NamePos: pos},
    			}
    		}
    	}
    	return nil // shouldn't happen, but be conservative and don't panic
    }
    
    func (r *reader) filterSpecList(list []ast.Spec, tok token.Token) []ast.Spec {
    	if tok == token.CONST {
    		// Propagate any type information that would get lost otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    		// Path rooted in the current drive.
    		return false
    	}
    	if stringslite.IndexByte(path, ':') >= 0 {
    		// Colons are only valid when marking a drive letter ("C:foo").
    		// Rejecting any path with a colon is conservative but safe.
    		return false
    	}
    	hasDots := false // contains . or .. path elements
    	for p := path; p != ""; {
    		var part string
    		part, p, _ = cutPath(p)
    		if part == "." || part == ".." {
    			hasDots = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

                     << "); this could lead to overly conservative execution order";
        // Note: By not incrementing `resource_type_id` we still maintain
        // correctness, we might only handle different resource types as the same
        // type (for ID `kMaxResourceTypeId`) which is overly conservative.
      } else {
        ++resource_type_id;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_unix_test.go

    	var lim syscall.Rlimit
    	err := syscall.Getrlimit(syscall.RLIMIT_CORE, &lim)
    	if err != nil {
    		t.Fatalf("error getting rlimit: %v", err)
    	}
    	// Minimum RLIMIT_CORE max to allow. This is a conservative estimate.
    	// Most systems allow infinity.
    	const minRlimitCore = 100 << 20 // 100 MB
    	if lim.Max < minRlimitCore {
    		t.Skipf("RLIMIT_CORE max too low: %#+v", lim)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security.go

    // as meaning "read more flags from the file foo", so we must
    // guard against any command-line argument beginning with @,
    // even things like "-I @foo".
    // We use load.SafeArg (which is even more conservative)
    // to reject these.
    //
    // Even worse, gcc -I@foo (one arg) turns into cc1 -I @foo (two args),
    // so although gcc doesn't expand the @foo, cc1 will.
    // So out of paranoia, we reject @ at the beginning of every
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. docs/en/data/github_sponsors.yml

        url: https://github.com/hgalytoby
      - login: conservative-dude
        avatarUrl: https://avatars.githubusercontent.com/u/55538308?u=f250c44942ea6e73a6bd90739b381c470c192c11&v=4
        url: https://github.com/conservative-dude
      - login: Joaopcamposs
        avatarUrl: https://avatars.githubusercontent.com/u/57376574?u=699d5ba5ee66af1d089df6b5e532b97169e73650&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    	TraceArgsMaxDepth = 5  // no more than 5 layers of nesting
    
    	// maxLen is a (conservative) upper bound of the byte stream length. For
    	// each arg/component, it has no more than 2 bytes of data (size, offset),
    	// and no more than one {, }, ... at each level (it cannot have both the
    	// data and ... unless it is the last one, just be conservative). Plus 1
    	// for _endSeq.
    	TraceArgsMaxLen = (TraceArgsMaxDepth*3+2)*TraceArgsLimit + 1
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top