Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for Thresholds (0.41 sec)

  1. plugin/pkg/auth/authorizer/node/graph_test.go

    			t.Errorf("expected index:\n%s\ngot:\n%s", string(e), string(a))
    		}
    	}
    
    	for i := 1; i <= g.destinationEdgeThreshold; i++ {
    		addPod(i, i)
    		if i < g.destinationEdgeThreshold {
    			// if we're under the threshold, no index expected
    			expectIndex(map[string][]string{})
    		}
    	}
    	expectGraph(map[string][]string{
    		"node:node1":            {},
    		"node:node2":            {},
    		"node:node3":            {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    	return m.recorder
    }
    
    // NewCgroupNotifier mocks base method.
    func (m *MockNotifierFactory) NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "NewCgroupNotifier", path, attribute, threshold)
    	ret0, _ := ret[0].(CgroupNotifier)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    		go matmult(done1, A, B, C, i0, i1, j0, mj, k0, k1, threshold)
    		matmult(nil, A, B, C, i0, i1, mj, j1, k0, k1, threshold)
    		<-done1
    	} else if dk >= threshold {
    		// divide in two by "k" axis
    		// deliberately not parallel because of data races
    		mk := k0 + dk/2
    		matmult(nil, A, B, C, i0, i1, j0, j1, k0, mk, threshold)
    		matmult(nil, A, B, C, i0, i1, j0, j1, mk, k1, threshold)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    		return err
    	}
    
    	// If over the max threshold, free enough to place us at the lower threshold.
    	usagePercent := 100 - int(available*100/capacity)
    	if usagePercent >= im.policy.HighThresholdPercent {
    		amountToFree := capacity*int64(100-im.policy.LowThresholdPercent)/100 - available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K 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. 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)
  7. 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)
  8. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if utilvalidation.IsInRange(int(kc.ImageGCLowThresholdPercent), 0, 100) != nil {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: imageGCLowThresholdPercent (--image-gc-low-threshold) %v must be between 0 and 100, inclusive", kc.ImageGCLowThresholdPercent))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            file("build/reports/pmd/test.xml").assertContents(containsClass("org.gradle.Class1Test"))
        }
    
        void "can configure priority level threshold"() {
            badCode()
            buildFile << """
                pmd {
                    rulesMinimumPriority = 2
                }
            """
    
            expect:
            fails("check")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. istioctl/pkg/analyze/analyze.go

    						parseErrors,
    						fileOrFiles,
    					)
    				}
    			}
    
    			// Return code is based on the unfiltered validation message list/parse errors
    			// We're intentionally keeping failure threshold and output threshold decoupled for now
    			var returnError error
    			if msgOutputFormat == formatting.LogFormat {
    				returnError = errorIfMessagesExceedThreshold(result.Messages)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top