Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for w_scale (0.07 sec)

  1. guava-testlib/src/com/google/common/testing/GcFinalization.java

    public final class GcFinalization {
      private GcFinalization() {}
    
      /**
       * 10 seconds ought to be long enough for any object to be GC'ed and finalized. Unless we have a
       * gigantic heap, in which case we scale by heap size.
       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	// is likely to be the originator, so requeuing would hot-loop us.  Failures are requeued by the workqueue directly.
    	// This is a low traffic and scale resource, so the copy is terrible.  It's not good, so better ideas
    	// are welcome.
    	oldCopy := oldCRD.DeepCopy()
    	newCopy := newCRD.DeepCopy()
    	oldCopy.ResourceVersion = ""
    	newCopy.ResourceVersion = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    			),
    			noMatch: attrList(
    				a("g", "v", "r", "", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r2", "", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r4", "scale", "name", admission.Create, &metav1.CreateOptions{}),
    			),
    		},
    	}
    	for name, tt := range table {
    		for _, m := range tt.match {
    			r := Matcher{tt.rule, m}
    			if !r.resource() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

            if (op->hasOneUse() &&
                op->user_begin()->hasTrait<OpTrait::IsTerminator>())
              return failure();
          }
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, moving dequantize op before
          // the requantize op to remove the unnecessary requantize op.
          if (auto qtype = quant::QuantizedType::getQuantizedElementType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_ResourceList(obj *v1.ResourceList) {
    	for key, val := range *obj {
    		// TODO(#18538): We round up resource values to milli scale to maintain API compatibility.
    		// In the future, we should instead reject values that need rounding.
    		const milliScale = -3
    		val.RoundUp(milliScale)
    
    		(*obj)[v1.ResourceName(key)] = val
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/os/signal/signal_test.go

    		// observed when running 10000 tests on such a system.
    		settleTime = 5 * time.Second
    	} else if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    		if scale, err := strconv.Atoi(s); err == nil {
    			settleTime *= time.Duration(scale)
    		}
    	}
    }
    
    func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
    	t.Helper()
    	waitSig1(t, c, sig, false)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util_test.go

    		depReplicas   int32
    		newRSReplicas int32
    		maxSurge      int32
    		expected      int32
    	}{
    		{
    			"can not scale up - to newRSReplicas",
    			apps.RollingUpdateDeploymentStrategyType,
    			1, 5, 1, 5,
    		},
    		{
    			"scale up - to depReplicas",
    			apps.RollingUpdateDeploymentStrategyType,
    			6, 2, 10, 6,
    		},
    		{
    			"recreate - to depReplicas",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // It uses a brute-force recursive approach to enumerate all objects
    // defined by dependencies of pkg, so that it can learn the set of
    // package paths that may be mentioned in the fact encoding. This does
    // not scale well; use [NewDecoderFunc] where possible.
    func NewDecoder(pkg *types.Package) *Decoder {
    	// Compute the import map for this package.
    	// See the package doc comment.
    	m := importMap(pkg.Imports())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_GETEGID        = 43  // { gid_t sys_getegid(void); }
    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top