Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for kmem (0.09 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/_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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/metrics-v2.go

    	capacityUsableSubsystem   MetricSubsystem = "capacity_usable"
    	driveSubsystem            MetricSubsystem = "drive"
    	interfaceSubsystem        MetricSubsystem = "if"
    	memSubsystem              MetricSubsystem = "mem"
    	cpuSubsystem              MetricSubsystem = "cpu_avg"
    	storageClassSubsystem     MetricSubsystem = "storage_class"
    	fileDescriptorSubsystem   MetricSubsystem = "file_descriptor"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	stwGoroutineProfileCleanup                      // "goroutine profile cleanup"
    	stwAllGoroutinesStack                           // "all goroutines stack trace"
    	stwReadMemStats                                 // "read mem stats"
    	stwAllThreadsSyscall                            // "AllThreadsSyscall"
    	stwGOMAXPROCS                                   // "GOMAXPROCS"
    	stwStartTrace                                   // "start trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //	    Sets -cover.
    //
    //	-cpuprofile cpu.out
    //	    Write a CPU profile to the specified file before exiting.
    //	    Writes test binary as -c would.
    //
    //	-memprofile mem.out
    //	    Write an allocation profile to the file after all tests have passed.
    //	    Writes test binary as -c would.
    //
    //	-memprofilerate n
    //	    Enable more precise (and expensive) memory allocation profiles by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top