Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for kmem (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    p�=lϋ�n���.m�T��Z"���ʨ��}נ��� :�rkރY��}q���,R�w�9G��+�[�T�.���hXt��۬>�����F��s\j�f���f�5�o� {��A��ꌊ=2��QpЕAerf\���z��*P���Y�r��ӟ3���Ҡź�8v�Gg� �sS�������a)��ᴒ�Ή��ߛ��s�:�n௥���9t�Whm+ذ+!}U�P��o���tO��Җ|�z[a��r����o����m|kmE�y�N��Z̊P]�O`2�5�[�k���l X��χ�"����8�C�a��`�;W�HO��:��a)��7 �T �*IU����*��r0�@�*bhVL���� �LM�Hg���T؇+�L�~���ȡ��|kpnj�����3�0 �lȳ��L���]5�/nWb��AQ9��� R0�R �?�AQԇ�]E} �i��2(Vn�,6Z6=c�4X��|���˵??ښ�e���朾��4�u�,��Z@m�'8VǀM�����>���'...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K 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)
  10. src/encoding/json/testdata/code.json.gz

    :1258135731,"mean_t":1258135731}],"cl_weight":0.4,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731},{"name":"malloc.cgo","kids":[],"cl_weight":0.2,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731},{"name":"mem.c","kids":[],"cl_weight":0.2,"touches":1,"min_t":1258135731,"max_t":1258135731,"mean_t":1258135731}],"cl_weight":4.500000000000001,"touches":5,"min_t":1256779433,"max_t":1261167953,"mean_t":1259199683},{"name":"net","kids":[{"name":"fd.go","kids":[...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top