Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for h_scale (0.17 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/gateway/controller.go

    	// push. A more exact check could actually determine if the label selection result actually changed.
    	// However, this is a much simpler approach that is likely to scale well enough for now.
    	if !intersection.IsEmpty() && c.namespaceHandler != nil {
    		log.Debugf("namespace labels changed, triggering namespace handler: %v", intersection.UnsortedList())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. 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)
  5. src/main/webapp/WEB-INF/view/advance.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    <html>
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.search_title" /></title>
    <c:if test="${osddLink}">
    	<link rel="search" type="application/opensearchdescription+xml" href="${fe:url('/osdd')}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/pprof/pprof.go

    	p1, err := collectProfile(p)
    	if err != nil {
    		serveError(w, http.StatusInternalServerError, "failed to collect profile")
    		return
    	}
    	ts := p1.TimeNanos
    	dur := p1.TimeNanos - p0.TimeNanos
    
    	p0.Scale(-1)
    
    	p1, err = profile.Merge([]*profile.Profile{p0, p1})
    	if err != nil {
    		serveError(w, http.StatusInternalServerError, "failed to compute delta")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.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.8K bytes
    - Viewed (0)
Back to top