Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for Thresholds (0.26 sec)

  1. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

        }
    
        @Test
        public void test_TmpFileHasBeenDeletedAfterResponseWasClosed() throws Exception {
            // ## Arrange ##
            CurlRequest req = new MockCurlRequest(Curl.Method.POST, "http://dummy");
            req.threshold(0); // always create tmp file
    
            // ## Act ##
            long before = countTmpFiles();
            logger.info("Before request. Number of temp files: " + before);
            req.execute(res -> {
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. cluster/addons/metrics-server/metrics-server-deployment.yaml

              - --cpu={{ base_metrics_server_cpu }}
              - --extra-cpu=0.5m
              - --memory={{ base_metrics_server_memory }}
              - --extra-memory={{ metrics_server_memory_per_node }}Mi
              - --threshold=5
              - --deployment=metrics-server-v0.7.1
              - --container=metrics-server
              - --poll-period=30000
              - --estimator=exponential
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security_test.go

    	{"-fno-split-stack"},
    	{"-fstack-xxx"},
    	{"-fno-stack-xxx"},
    	{"-fsanitize=hands"},
    	{"-g"},
    	{"-ggdb"},
    	{"-march=souza"},
    	{"-mcmodel=medium"},
    	{"-mcpu=123"},
    	{"-mfpu=123"},
    	{"-mlarge-data-threshold=16"},
    	{"-mtune=happybirthday"},
    	{"-mstack-overflow"},
    	{"-mno-stack-overflow"},
    	{"-mmacosx-version"},
    	{"-mnop-fun-dllimport"},
    	{"-pthread"},
    	{"-std=c99"},
    	{"-xc"},
    	{"-D", "FOO"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.h

    // input sizes, such as tf.Shape and tf.Reshape, are whitelisted to have cheap
    // cost. This cost analysis is expected to be used conservatively (eg. use a low
    // threshold to decide whether a cost is cheap or expensive), as it might not be
    // accurate in some cases.
    //
    class CostAnalysis {
     public:
      explicit CostAnalysis(
          mlir::func::FuncOp func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

         */
        public int getThreshold() {
            return 0;
        }
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThreshold(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>null</code>).
         */
        public Logger getChildLogger(String name) {
            return null;
        }
    
        public String getName() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/log/logr.go

    // logging is based on Verbosity levels, where 0 is the most important. We treat
    // levels 0-3 as info level and 4+ as debug; there are no warnings. This
    // threshold is fairly arbitrary based on inspection of Kubernetes usage and
    // https://kubernetes.io/docs/reference/kubectl/cheatsheet/#kubectl-output-verbosity-and-debugging.
    // Errors are passed through as errors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    	// traces in rest/handlers for create, delete, update,
    	// get, list, and deletecollection.
    	const threshold = 500 * time.Millisecond
    	latency := ev.StageTimestamp.Time.Sub(ev.RequestReceivedTimestamp.Time)
    	if latency <= threshold {
    		return
    	}
    
    	// if we are tracking latency incurred inside different layers within
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. cmd/server-rlimit.go

    	// about older Linux kernels and Go runtime.
    	return currentKernel < kernel.Version(4, 0, 0)
    }
    
    func setMaxResources(ctx serverCtxt) (err error) {
    	// Set the Go runtime max threads threshold to 90% of kernel setting.
    	sysMaxThreads, err := sys.GetMaxThreads()
    	if err == nil {
    		minioMaxThreads := (sysMaxThreads * 90) / 100
    		// Only set max threads if it is greater than the default one
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

    package org.apache.maven.slf4j;
    
    import org.apache.maven.logwrapper.LogLevelRecorder;
    import org.slf4j.event.Level;
    
    /**
     * A proxy which enhances the MavenSimpleLogger with functionality to track whether a logging threshold is hit.
     * Currently only support WARN and ERROR states, since it's been used for the --fail-on-severity flag.
     */
    public class MavenFailOnSeverityLogger extends MavenSimpleLogger {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top