Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for conservative (0.3 sec)

  1. src/cmd/internal/sys/args.go

    // license that can be found in the LICENSE file.
    
    package sys
    
    // ExecArgLengthLimit is the number of bytes we can safely
    // pass as arguments to an exec.Command.
    //
    // Windows has a limit of 32 KB. To be conservative and not worry about whether
    // that includes spaces or not, just use 30 KB. Darwin's limit is less clear.
    // The OS claims 256KB, but we've seen failures with arglen as small as 50KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

      for (Operation *user : identity->getUsers()) {
        // Replace the op with the input if output is only used by TF ops.
        // Currently this is more on the conservative side since we need to ensure
        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	numStored, err := e.countGetterFn(key(requestInfo))
    	switch {
    	case err == ObjectCountStaleErr:
    		// object count going stale is indicative of degradation, so we should
    		// be conservative here and allocate maximum seats to this list request.
    		// NOTE: if a CRD is removed, its count will go stale first and then the
    		// pruner will eventually remove the CRD from the cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *
         * E.g. `x` in the following example is definitely *not* used (`x.isUsedAsExpression() == false`)
         *   - `run { x; println(50) }`
         *   - `when (x) { else -> ... }`
         *
         * **Note!** This is a conservative check, not a control-flow analysis.
         * E.g. `x` in the following example *is possibly used*, even though the
         * value is never consumed at runtime.
         *   - `x + try { throw Exception() } finally { return }`
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/internal/poll/writev.go

    		return 0, err
    	}
    
    	var iovecs []syscall.Iovec
    	if fd.iovecs != nil {
    		iovecs = *fd.iovecs
    	}
    	// TODO: read from sysconf(_SC_IOV_MAX)? The Linux default is
    	// 1024 and this seems conservative enough for now. Darwin's
    	// UIO_MAXIOV also seems to be 1024.
    	maxVec := 1024
    	if runtime.GOOS == "aix" || runtime.GOOS == "solaris" {
    		// IOV_MAX is set to XOPEN_IOV_MAX on AIX and Solaris.
    		maxVec = 16
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/pleg.go

    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    	// ContainerStarted - event type when the new state of container is running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. internal/dsync/dsync-client_test.go

    		ReadBufferSize:        32 << 10, // 32KiB moving up from 4KiB default
    		IdleConnTimeout:       15 * time.Second,
    		ResponseHeaderTimeout: 15 * time.Minute, // Set conservative timeouts for MinIO internode.
    		TLSHandshakeTimeout:   15 * time.Second,
    		ExpectContinueTimeout: 15 * time.Second,
    		// Go net/http automatically unzip if content-type is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/fuse_comparisons.go

    		// is lower than a fixed amount. Bear in mind however that the
    		// other optimization passes might yet reduce the cost of b
    		// significantly so we shouldn't be overly conservative.
    		if !canSpeculativelyExecute(b) {
    			return false
    		}
    
    		// Logically combine the control values for p and b.
    		v := b.NewValue0(bc.Pos, op, bc.Type)
    		v.AddArg(pc)
    		v.AddArg(bc)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. src/html/template/attr.go

    	"usemap":      contentTypeURL,
    	"value":       contentTypeUnsafe,
    	"width":       contentTypePlain,
    	"wrap":        contentTypePlain,
    	"xmlns":       contentTypeURL,
    }
    
    // attrType returns a conservative (upper-bound on authority) guess at the
    // type of the lowercase named attribute.
    func attrType(name string) contentType {
    	if strings.HasPrefix(name, "data-") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		} else {
    			lastImport = path
    		}
    		var loc string
    		if fr.Func != nil {
    			// Use function-relative line numbering.
    			// f:+2 means two lines into function f.
    			// f:-1 should never happen, but be conservative.
    			_, entryLine := fr.Func.FileLine(fr.Entry)
    			loc = fmt.Sprintf("%s.%s:%+d", path, fname, fr.Line-entryLine)
    		} else {
    			// The function is non-Go code or is fully inlined:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top