Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for h_scale (0.36 sec)

  1. pkg/controller/disruption/disruption.go

    			isScale, err := dc.implementsScale(mapping.Resource)
    			if err != nil {
    				return nil, err
    			}
    			if !isScale {
    				return nil, fmt.Errorf("%s does not implement the scale subresource", gr.String())
    			}
    			return nil, nil
    		}
    		return nil, err
    	}
    	if scale.UID != controllerRef.UID {
    		return nil, nil
    	}
    	return &controllerAndScale{scale.UID, scale.Spec.Replicas}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/anames.go

    	"FMOVX",
    	"FMOVXP",
    	"FMULD",
    	"FMULDP",
    	"FMULF",
    	"FMULL",
    	"FMULW",
    	"FNOP",
    	"FPATAN",
    	"FPREM",
    	"FPREM1",
    	"FPTAN",
    	"FRNDINT",
    	"FRSTOR",
    	"FSAVE",
    	"FSCALE",
    	"FSIN",
    	"FSINCOS",
    	"FSQRT",
    	"FSTCW",
    	"FSTENV",
    	"FSTSW",
    	"FSUBD",
    	"FSUBDP",
    	"FSUBF",
    	"FSUBL",
    	"FSUBRD",
    	"FSUBRDP",
    	"FSUBRF",
    	"FSUBRL",
    	"FSUBRW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // Scale represents a scaling request for a resource.
    message Scale {
      // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // Scale represents a scaling request for a resource.
    message Scale {
      // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	if runtime.GOOS == "dragonfly" {
    		t.Skip("skipping: wait hangs on dragonfly; see https://go.dev/issue/56132")
    	}
    
    	scale := 1
    	if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    		if sc, err := strconv.Atoi(s); err == nil {
    			scale = sc
    		}
    	}
    	pause := time.Duration(scale) * 10 * time.Millisecond
    
    	lvl := os.Getenv("GO_TEST_TERMINAL_SIGNALS")
    	switch lvl {
    	case "":
    		// Main test process, run code below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *Scale) DeepCopyInto(out *Scale) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Spec = in.Spec
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Scale.
    func (in *Scale) DeepCopy() *Scale {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			seg += "%es:"
    		}
    		if haveFS {
    			seg += "%fs:"
    		}
    		if haveGS {
    			seg += "%gs:"
    		}
    		disp := ""
    		if x.Disp != 0 {
    			disp = fmt.Sprintf("%#x", x.Disp)
    		}
    		if x.Scale == 0 || x.Index == 0 && x.Scale == 1 && (x.Base == ESP || x.Base == RSP || x.Base == 0 && inst.Mode == 64) {
    			if x.Base == 0 {
    				return seg + disp
    			}
    			return fmt.Sprintf("%s%s(%s)", seg, disp, gccRegName[x.Base])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

            auto shape = GetAsVector(quant_tensor->shape());
            if (kUseUpdatedHybridSchemeDefault) {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), shape[0]);
            } else {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), 1);
            }
          } else {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT32);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    }
    
    var errInternal = errors.New("internal error")
    
    // addr16 records the eight 16-bit addressing modes.
    var addr16 = [8]Mem{
    	{Base: BX, Scale: 1, Index: SI},
    	{Base: BX, Scale: 1, Index: DI},
    	{Base: BP, Scale: 1, Index: SI},
    	{Base: BP, Scale: 1, Index: DI},
    	{Base: SI},
    	{Base: DI},
    	{Base: BP},
    	{Base: BX},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    		a.writeNameTo(w, abiDetail)
    
    	case TYPE_MEM:
    		a.WriteNameTo(w)
    		if a.Index != REG_NONE {
    			if a.Scale == 0 {
    				// arm64 shifted or extended register offset, scale = 0.
    				fmt.Fprintf(w, "(%v)", Rconv(int(a.Index)))
    			} else {
    				fmt.Fprintf(w, "(%v*%d)", Rconv(int(a.Index)), int(a.Scale))
    			}
    		}
    
    	case TYPE_CONST:
    		io.WriteString(w, "$")
    		a.WriteNameTo(w)
    		if a.Reg != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top