Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for kmem (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    		mem)
    
    // moves
    (Move [0] _   _   mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBUload src mem) mem)
    (Move [2] dst src mem) => (MOVHstore dst (MOVHUload src mem) mem)
    (Move [3] dst src mem) =>
    	(MOVBstore [2] dst (MOVBUload [2] src mem)
    		(MOVHstore dst (MOVHUload src mem) mem))
    (Move [4] dst src mem) => (MOVWstore dst (MOVWUload src mem) mem)
    (Move [5] dst src mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (Move [0] _ _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_2
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Move [1] dst src mem)
    	// result: (MOVBstore dst (MOVBload src mem) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 {
    			break
    		}
    		dst := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Store _ (StructMake0) mem) => mem
    (Store dst (StructMake1 <t> f0) mem) =>
      (Store {t.FieldType(0)} (OffPtr <t.FieldType(0).PtrTo()> [0] dst) f0 mem)
    (Store dst (StructMake2 <t> f0 f1) mem) =>
      (Store {t.FieldType(1)}
        (OffPtr <t.FieldType(1).PtrTo()> [t.FieldOff(1)] dst)
        f1
        (Store {t.FieldType(0)}
          (OffPtr <t.FieldType(0).PtrTo()> [0] dst)
            f0 mem))
    (Store dst (StructMake3 <t> f0 f1 f2) mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	// Design the baseline for the pods, and we will make nodes that don't fit it later.
    	var cpu = int64(4)
    	var mem = int64(500)
    	podWithTooBigResourceRequests := podWithResources("bar", "", v1.ResourceList{
    		v1.ResourceCPU:    *(resource.NewQuantity(cpu, resource.DecimalSI)),
    		v1.ResourceMemory: *(resource.NewQuantity(mem, resource.DecimalSI)),
    	}, v1.ResourceList{
    		v1.ResourceCPU:    *(resource.NewQuantity(cpu, resource.DecimalSI)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    func TestInsufficientCapacityNodeDaemonDoesNotUnscheduleRunningPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		podSpec := resourcePodSpec("too-much-mem", "75M", "75m")
    		podSpec.NodeName = "too-much-mem"
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    		ds.Spec.Template.Spec = podSpec
    		_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		// not pseudo on x86, hence REG_SP check is not redundant.
    		if a.Index == REG_SP || a.Index < 0 {
    			// Can't use FP/SB/PC/SP as the index register.
    			return Yxxx
    		}
    
    		if vmem, ok := oclassVMem(ctxt, a); ok {
    			return vmem
    		}
    
    		if ctxt.Arch.Family == sys.AMD64 {
    			switch a.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC, obj.NAME_GOTREF:
    				// Global variables can't use index registers and their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    		// M4 is reserved and must be 0
    		zRRF(opcode, 5, 0, uint32(p.To.Reg), uint32(p.From.Reg), asm)
    
    	case 84: // storage-and-storage operations $length mem mem
    		l := c.regoff(&p.From)
    		if l < 1 || l > 256 {
    			c.ctxt.Diag("number of bytes (%v) not in range [1,256]", l)
    		}
    		if p.GetFrom3().Index != 0 || p.To.Index != 0 {
    			c.ctxt.Diag("cannot use index reg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	ptr = uintptr(r0)
    	if ptr == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LocalFree(hmem Handle) (handle Handle, err error) {
    	r0, _, e1 := syscall.Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)
    	handle = Handle(r0)
    	if handle != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    			expectErr:         false,
    			expectThresholds:  []evictionapi.Threshold{},
    		},
    		"invalid-signal": {
    			allocatableConfig:       []string{},
    			evictionHard:            map[string]string{"mem.available": "150Mi"},
    			evictionSoft:            map[string]string{},
    			evictionSoftGracePeriod: map[string]string{},
    			evictionMinReclaim:      map[string]string{},
    			expectErr:               true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    #include "tensorflow/core/graph/validate.h"
    #include "tensorflow/core/lib/gtl/array_slice.h"
    #include "tensorflow/core/platform/coding.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mem.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/str_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top