Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 297 for Thresholds (0.21 sec)

  1. pkg/kubelet/eviction/threshold_notifier_unsupported.go

    */
    
    package eviction
    
    import "k8s.io/klog/v2"
    
    // NewCgroupNotifier creates a cgroup notifier that does nothing because cgroups do not exist on non-linux systems.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	klog.V(5).InfoS("cgroup notifications not supported")
    	return &unsupportedThresholdNotifier{}, nil
    }
    
    type unsupportedThresholdNotifier struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. istioctl/pkg/analyze/analyze_test.go

    	}
    
    	err := errorIfMessagesExceedThreshold(msgs)
    
    	g.Expect(err).To(BeNil())
    }
    
    func TestSkipPodsInFiles(t *testing.T) {
    	c := testutil.TestCase{
    		Args: strings.Split(
    			"-A --use-kube=false --failure-threshold ERROR testdata/analyze-file/public-gateway.yaml",
    			" "),
    		WantException: false,
    	}
    	analyze := Analyze(cli.NewFakeContext(nil))
    	testutil.VerifyOutput(t, analyze, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/podgccontroller.go

    func (o *PodGCControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.TerminatedPodGCThreshold, "terminated-pod-gc-threshold", o.TerminatedPodGCThreshold, "Number of terminated pods that can exist before the terminated pod garbage collector starts deleting terminated pods. If <= 0, the terminated pod garbage collector is disabled.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/internal/pgo/pgo.go

    package pgo
    
    // Profile contains the processed data from the PGO profile.
    type Profile struct {
    	// TotalWeight is the aggregated edge weights across the profile. This
    	// helps us determine the percentage threshold for hot/cold
    	// partitioning.
    	TotalWeight int64
    
    	// NamedEdgeMap contains all unique call edges in the profile and their
    	// edge weight.
    	NamedEdgeMap NamedEdgeMap
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "invalid ImageGCLowThresholdPercent",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ImageGCLowThresholdPercent = -1
    			return conf
    		},
    		errMsg: "invalid configuration: imageGCLowThresholdPercent (--image-gc-low-threshold) -1 must be between 0 and 100, inclusive",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

                                  n->name());
        }
        total_elements *= dim.size();
      }
    
      // TODO(sanjoy): It may make sense to combine this threshold with XLA's "large
      // constant" threshold, if there is one.
      const int kSmallTensorThreshold = 16;
      return total_elements < kSmallTensorThreshold;
    }
    
    // We only clone small constants since we want to avoid increasing memory
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. maven-slf4j-wrapper/src/test/java/org/apache/maven/logwrapper/LogLevelRecorderTest.java

            Throwable thrown = assertThrows(IllegalArgumentException.class, () -> new LogLevelRecorder("SEVERE"));
            String message = thrown.getMessage();
            assertThat(message, containsString("SEVERE is not a valid log severity threshold"));
            assertThat(message, containsString("WARN"));
            assertThat(message, containsString("WARNING"));
            assertThat(message, containsString("ERROR"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenLoggerFactory.java

    import org.slf4j.Logger;
    import org.slf4j.simple.SimpleLoggerFactory;
    
    /**
     * LogFactory for Maven which can create a simple logger or one which, if set, fails the build on a severity threshold.
     */
    public class MavenLoggerFactory extends SimpleLoggerFactory implements MavenSlf4jWrapperFactory {
        private LogLevelRecorder logLevelRecorder = null;
    
        public MavenLoggerFactory() {}
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    NOTE: Using a short TTL threshold for dynamic or changing versions may result in longer build times due to the increased number of HTTP(s) calls.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

      void removeAllStatsOp(func::FuncOp func);
    
      void runOnOperation() override;
    
     private:
      // Keeps track of ops whose inputs cannot be quantized due to not meeting the
      // minimum_elements_for_weights threshold. Prevents emitting duplicate
      // warnings for the same op, once deemed ineligible for quantization.
      llvm::SetVector<Operation*> visited_nonquantizable_ops_;
      quant::QuantizationSpecs quant_specs_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top