Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 231 for endMem (0.12 sec)

  1. src/time/zoneinfo.go

    	startSec := int64(tzruleTime(year, startRule, stdOffset))
    	endSec := int64(tzruleTime(year, endRule, dstOffset))
    	dstIsDST, stdIsDST := true, false
    	// Note: this is a flipping of "DST" and "STD" while retaining the labels
    	// This happens in southern hemispheres. The labelling here thus is a little
    	// inconsistent with the goal.
    	if endSec < startSec {
    		startSec, endSec = endSec, startSec
    		stdName, dstName = dstName, stdName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/svn/hello.txt

    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    ENDREP
    id: 0.0.r0/17
    type: dir
    count: 0
    text: 0 0 4 4 2d2977d1c96f487abe4a1e202dd03b4e
    cpath: /
    
    
    17 107
    -- db/txn-current --
    0
    -- db/txn-current-lock --
    -- db/uuid --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/path-operation-advanced-configuration.md

    Sie können das OpenAPI-Schema für eine *Pfadoperation* erweitern, indem Sie den Parameter `openapi_extra` verwenden.
    
    ### OpenAPI-Erweiterungen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/syscall/tables_wasip1.go

    	ENFILE          Errno = 41
    	ENOBUFS         Errno = 42
    	ENODEV          Errno = 43
    	ENOENT          Errno = 44
    	ENOEXEC         Errno = 45
    	ENOLCK          Errno = 46
    	ENOLINK         Errno = 47
    	ENOMEM          Errno = 48
    	ENOMSG          Errno = 49
    	ENOPROTOOPT     Errno = 50
    	ENOSPC          Errno = 51
    	ENOSYS          Errno = 52
    	ENOTCONN        Errno = 53
    	ENOTDIR         Errno = 54
    	ENOTEMPTY       Errno = 55
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/posmap.go

    	cache struct {
    		last *syntax.PosBase
    		base *src.PosBase
    	}
    }
    
    type poser interface{ Pos() syntax.Pos }
    type ender interface{ End() syntax.Pos }
    
    func (m *posMap) pos(p poser) src.XPos { return m.makeXPos(p.Pos()) }
    func (m *posMap) end(p ender) src.XPos { return m.makeXPos(p.End()) }
    
    func (m *posMap) makeXPos(pos syntax.Pos) src.XPos {
    	// Predeclared objects (e.g., the result parameter for error.Error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/mmap.go

    // We only pass the lower 32 bits of file offset to the
    // assembly routine; the higher bits (if required), should be provided
    // by the assembly routine as 0.
    // The err result is an OS error code such as ENOMEM.
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
    
    // munmap calls the munmap system call. It is implemented in assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 844 bytes
    - Viewed (0)
  7. docs/de/docs/reference/status.md

    Zum Beispiel:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * usw.
    
    Es kann praktisch sein, schnell auf HTTP- (und WebSocket-)Statuscodes in Ihrer Anwendung zuzugreifen, indem Sie die automatische Vervollständigung für den Namen verwenden, ohne sich die Zahlen für die Statuscodes merken zu müssen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:17:17 UTC 2024
    - 934 bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    	stream, err := c.client.ListAndWatch(context.Background(), &api.Empty{})
    	if err != nil {
    		klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    		return
    	}
    
    	for {
    		response, err := stream.Recv()
    		if err != nil {
    			klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	n := unsafe.Sizeof(uname.Sysname)
    	// Suppress ENOMEM errors to be compatible with the C library __xuname() implementation.
    	if err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil && !errors.Is(err, ENOMEM) {
    		return err
    	}
    
    	mib = []_C_int{CTL_KERN, KERN_HOSTNAME}
    	n = unsafe.Sizeof(uname.Nodename)
    	if err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil && !errors.Is(err, ENOMEM) {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/benchmark/bench.go

    		fmt.Fprintf(w, "\t%d B/op", curMark.endM.TotalAlloc-curMark.startM.TotalAlloc)
    		fmt.Fprintf(w, "\t%d allocs/op", curMark.endM.Mallocs-curMark.startM.Mallocs)
    		if m.gc == GC {
    			fmt.Fprintf(w, "\t%d live-B", curMark.gcM.HeapAlloc)
    		} else {
    			fmt.Fprintf(w, "\t%d heap-B", curMark.endM.HeapAlloc)
    		}
    		fmt.Fprintf(w, "\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top