Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 501 for noff (0.07 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	off := hdr.Lrldoff                                // current offset is the same of reloc offset
    
    	/* Reloc */
    	// Ensure deterministic order
    	sort.Slice(f.loaderReloc, func(i, j int) bool {
    		r1, r2 := f.loaderReloc[i], f.loaderReloc[j]
    		if r1.sym != r2.sym {
    			return r1.sym < r2.sym
    		}
    		if r1.roff != r2.roff {
    			return r1.roff < r2.roff
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_metadata/test_tutorial001.py

        assert response.status_code == 200, response.text
        assert response.json() == {
            "openapi": "3.1.0",
            "info": {
                "title": "ChimichangApp",
                "summary": "Deadpool's favorite app. Nuff said.",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/anames7.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_s390x.go

    //sys	Setfsuid(uid int) (err error)
    //sysnb	setrlimit(resource int, rlim *Rlimit) (err error) = SYS_SETRLIMIT
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statfs(path string, buf *Statfs_t) (err error)
    //sys	SyncFileRange(fd int, off int64, n int64, flags int) (err error) = SYS_SYNC_FILE_RANGE
    //sys	Truncate(path string, length int64) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/cpuguy83/go-md2man/v2/LICENSE

    = vendor/github.com/cpuguy83/go-md2man/v2 licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2014 Brian Goff
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 20:22:14 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. pkg/probe/dialer_others.go

    	dialer := &net.Dialer{
    		Control: func(network, address string, c syscall.RawConn) error {
    			return c.Control(func(fd uintptr) {
    				syscall.SetsockoptLinger(int(fd), syscall.SOL_SOCKET, syscall.SO_LINGER, &syscall.Linger{Onoff: 1, Linger: 1})
    			})
    		},
    	}
    	return dialer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/dialer_others.go

    	dialer := &net.Dialer{
    		Control: func(network, address string, c syscall.RawConn) error {
    			return c.Control(func(fd uintptr) {
    				_ = syscall.SetsockoptLinger(int(fd), syscall.SOL_SOCKET, syscall.SO_LINGER, &syscall.Linger{Onoff: 1, Linger: 1})
    			})
    		},
    	}
    	return dialer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/dialer_windows.go

    	dialer := &net.Dialer{
    		Control: func(network, address string, c syscall.RawConn) error {
    			return c.Control(func(fd uintptr) {
    				syscall.SetsockoptLinger(syscall.Handle(fd), syscall.SOL_SOCKET, syscall.SO_LINGER, &syscall.Linger{Onoff: 1, Linger: 1})
    			})
    		},
    	}
    	return dialer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/internal/zstd/block.go

    		off++
    	} else {
    		if off+1 >= len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    		seqCount = int(data[off]) + (int(data[off+1]) << 8) + 0x7f00
    		off += 2
    	}
    
    	// Read the Symbol_Compression_Modes byte.
    
    	if off >= len(data) {
    		return 0, 0, r.makeEOFError(off)
    	}
    	symMode := data[off]
    	if symMode&3 != 0 {
    		return 0, 0, r.makeError(off, "invalid symbol compression mode")
    	}
    	off++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    	}
    
    	if off := typedieof(ptrastructTypeDIE); off != astructTypeDIE.Offset {
    		t.Errorf("type attribute of *main.astruct references %#x, not main.astruct DIE at %#x\n", off, astructTypeDIE.Offset)
    	}
    
    	if off := typedieof(globalptrDIE); off != ptrastructTypeDIE.Offset {
    		t.Errorf("type attribute of main.globalptr references %#x, not *main.astruct DIE at %#x\n", off, ptrastructTypeDIE.Offset)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top