Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Thresholds (0.21 sec)

  1. pkg/config/validation/validation_test.go

    				MaxEjectionPercent: 105,
    			},
    			valid: false,
    		},
    		{
    			name: "invalid outlier detection, panic threshold too low", in: &networking.OutlierDetection{
    				MinHealthPercent: -1,
    			},
    			valid: false,
    		},
    		{
    			name: "invalid outlier detection, panic threshold too high", in: &networking.OutlierDetection{
    				MinHealthPercent: 101,
    			},
    			valid: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    package org.codehaus.plexus.logging; public abstract synchronized class BaseLoggerManager extends AbstractLoggerManage implements org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable { private java.util.Map loggerCache; private String threshold; private int currentThreshold; public void BaseLoggerManager(); public void initialize(); protected int parseThreshold(String); public void setThreshold(int); public void setThresholds(int); public int getThreshold(); public void setThreshold(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    package org.codehaus.plexus.logging; public abstract synchronized class BaseLoggerManager extends AbstractLoggerManage implements org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable { private java.util.Map loggerCache; private String threshold; private int currentThreshold; public void BaseLoggerManager(); public void initialize(); protected int parseThreshold(String); public void setThreshold(int); public void setThresholds(int); public int getThreshold(); public void setThreshold(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	// allocation to store the index. But generally the set will be small and
    	// under a scannable-threshold. As an optimization, we could permit the *int
    	// to be nil when the set is small and should be scanned. This works even if
    	// the set grows over the threshold with delete handles outstanding because
    	// an element can only move to a lower index. So if it starts with a nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Kubelet integrates with memcg notification API to detect when a hard eviction threshold is crossed ([kubernetes/features#125](https://github.com/kubernetes/enhancements/issues/125))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		}
    	}
    
    	for _, test := range serverExpectTests {
    		runTest(test)
    	}
    }
    
    // Under a ~256KB (maxPostHandlerReadBytes) threshold, the server
    // should consume client request bodies that a handler didn't read.
    func TestServerUnreadRequestBodyLittle(t *testing.T) {
    	setParallel(t)
    	defer afterTest(t)
    	conn := new(testConn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				testutil.CreateZoneID("region1", "zone1"): statePartialDisruption,
    			},
    		},
    		"Partial Disruption: one Node failed leading to the number of healthy Nodes to exceed the configured threshold": {
    			nodeList: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:              "node0",
    						CreationTimestamp: fakeNow,
    						Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // of the `first_arg_op` kind (e.g. tf.Mul) are stored in `exceptions`. If
      // there are too many exceptions, it might not be cost effective to apply the
      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
      // out of 2 concat inputs is an exception, we don't apply the hoist. If it's 1
      // out of 3, we do.
      const float exception_pct_threshold = 0.5;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded Failure Type */
        public static final String LABELS_ignore_failure_type = "{labels.ignore_failure_type}";
    
        /** The key of the message: Failure Count Threshold */
        public static final String LABELS_failure_count_threshold = "{labels.failure_count_threshold}";
    
        /** The key of the message: Popular Word Response */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    // calls appropriately. The limit allows for the space needed for
    // tables inserted by the linker.
    //
    // The same applies to Darwin/ARM64, with 2^27 byte threshold.
    //
    // Similarly for ARM, we split sections (at 2^25 bytes) to avoid
    // inconsistencies between the Go linker's reachability calculations
    // (e.g. will direct call from X to Y need a trampoline) and similar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top