Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for cautious (0.36 sec)

  1. src/runtime/debug_test.go

    	skipUnderDebugger(t)
    
    	// This can deadlock if there aren't enough threads or if a GC
    	// tries to interrupt an atomic loop (see issue #10958). Execute
    	// an extra GC to ensure even the sweep phase is done (out of
    	// caution to prevent #49370 from happening).
    	// TODO(mknyszek): This extra GC cycle is likely unnecessary
    	// because preemption (which may happen during the sweep phase)
    	// isn't much of an issue anymore thanks to asynchronous preemption.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

    .literal, .filename {
        white-space: nowrap;
    }
    
    .caution {
        font-size: 15px;
        color: #AF5252;
        background-color: pink;
        font-style: italic;
        border-radius: 3px;
        display: inline-block;
        padding: 0 5px;
        margin-bottom: 8px;
    }
    
    .caution :last-child {
        margin-bottom: 0;
    }
    
    table .caution {
        font-size: 13px;
        margin-right: 6px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/math/cmplx/tan.go

    		y2 *= y
    		t := y2 + x2
    		t /= f
    		d += t
    
    		rn++
    		f *= rn
    		rn++
    		f *= rn
    		x2 *= x
    		y2 *= y
    		t = y2 - x2
    		t /= f
    		d += t
    		if !(math.Abs(t/d) > MACHEP) {
    			// Caution: Use ! and > instead of <= for correct behavior if t/d is NaN.
    			// See issue 17577.
    			break
    		}
    	}
    	return d
    }
    
    // Complex circular cotangent
    //
    // DESCRIPTION:
    //
    // If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. src/compress/gzip/gunzip.go

    		//
    		// Other than this, the specification does not clarify whether a
    		// "series" is defined as "one or more" or "zero or more". To err on the
    		// side of caution, Go interprets this to mean "zero or more".
    		// Thus, it is okay to return io.EOF here.
    		return hdr, err
    	}
    	if z.buf[0] != gzipID1 || z.buf[1] != gzipID2 || z.buf[2] != gzipDeflate {
    		return hdr, ErrHeader
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. docs/distributed/README.md

    - `MINIO_DOMAIN` environment variable should be defined and exported for bucket DNS style support.
    - Running Distributed MinIO on **Windows** operating system is considered **experimental**. Please proceed with caution.
    
    Example 1: Start distributed MinIO instance on n nodes with m drives each mounted at `/export1` to `/exportm` (pictured below), by running this command on all the n nodes:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	font-style: normal;
    	font-weight: bold;
    	margin: -.05em;
    	padding: 0 .5em;
    	text-transform: uppercase
    }
    
    .admonitionblock.caution td.icon {
    	background-color: var(--caution-color);
    	color: var(--caution-on-color)
    }
    
    .admonitionblock.caution td.icon i {
    	background-image: url(./img/octicons-16.svg#view-flame)
    }
    
    .admonitionblock.important td.icon {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/podcgroupns.go

    // nolint: lll
    var cgroupREs = []*regexp.Regexp{
    	// the regex used to parse out the pod UID and container ID from a
    	// cgroup name. It assumes that any ".scope" suffix has been trimmed off
    	// beforehand.  CAUTION: we used to verify that the pod and container id were
    	// descendants of a kubepods directory, however, as of Kubernetes 1.21, cgroups
    	// namespaces are in use and therefore we can no longer discern if that is the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. SECURITY.md

    [JAX](https://jax.readthedocs.io/en/latest/jax-101/02-jitting.html)
    documentation should be safe, while some of the testing and debugging tools that
    come with the compiler are not designed to be used with untrusted data and
    should be used with caution when working with untrusted models.
    
    ### Saved graphs and checkpoints
    
    When loading untrusted serialized computation graphs (in form of a `GraphDef`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    | `-w` or `--warn` | WARN and higher
    | no logging options | LIFECYCLE and higher
    | `-i` or `--info` | INFO and higher
    | `-d` or `--debug` | DEBUG and higher (that is, all log messages)
    |===
    
    CAUTION: The `DEBUG` log level can <<#sec:debug_security, expose sensitive security information to the console>>.
    
    [[stacktraces]]
    === Stacktrace command-line options
    
    `-s` or `--stacktrace`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/config/validation/envoyfilter/envoyfilter.go

    		errs := Validation{}
    		errs = validation.AppendWarningf(errs, "EnvoyFilter exposes internal implementation details that may change at any time. "+
    			"Prefer other APIs if possible, and exercise extreme caution, especially around upgrades.")
    		return validateEnvoyFilter(cfg, errs)
    	})
    
    func validateEnvoyFilter(cfg config.Config, errs Validation) (Warning, error) {
    	rule, ok := cfg.Spec.(*networking.EnvoyFilter)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top