Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for fd (0.02 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000250  10 77 6f d1 96 86 84 63  fd 27 8e b9 54 da 4b b5  |.wo....c.'..T.K.|
    00000260  56 f0 50 8a aa c7 e1 b3  cb 9c 36 9e ec 38 31 39  |V.P.......6..819|
    00000270  78 ec ea 34 8a 87 cf 6b  34 fd 5e 81 92 81 61 f1  |x..4...k4.^...a.|
    00000280  88 e7 50 62 2e 58 0b d9  b9 ca f3 ed 79 a9 9a 01  |..Pb.X......y...|
    00000290  80 9d 7f 84 ae de fb 51  ac 0f 6b b9 76 fd 68 d4  |.......Q..k.v.h.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/covdata/metamerge.go

    		// meta-data builder.
    		fnhash := encodemeta.HashFuncDesc(fd)
    		gfidx, ok := mm.p.ftab[fnhash]
    		if !ok {
    			// We haven't seen this function before, need to add it to
    			// the meta data.
    			gfidx = uint32(mm.p.cmdb.AddFunc(*fd))
    			mm.p.ftab[fnhash] = gfidx
    			if *verbflag >= 3 {
    				fmt.Printf("new meta entry for fn %s fid=%d\n", fd.Funcname, gfidx)
    			}
    		}
    		fnIdx = gfidx
    	}
    	if !haveCounters {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-RSA

    000002d0  57 55 26 c5 46 f2 5d a1  f5 20 46 0d 63 fd 48 5a  |WU&.F.].. F.c.HZ|
    000002e0  f3 65 90 8c 1a bd 59 6e  5f d1 5c b6 ee 33 49 12  |.e....Yn_.\..3I.|
    000002f0  46 ec                                             |F.|
    >>> Flow 4 (server to client)
    00000000  14 03 01 00 01 01 16 03  01 00 30 b1 3c 7f c3 15  |..........0.<...|
    00000010  e4 fe bc 1a ee 0d ec 28  ce b0 f7 fd a4 0a e4 79  |.......(.......y|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    			isStdout = false
    		}
    		p.annotateFile(name, fd)
    		if !isStdout {
    			if err := fd.Close(); err != nil {
    				log.Fatalf("cover: %s", err)
    			}
    		}
    	}
    
    	if *pkgcfg != "" {
    		fd, err := os.Create(covervarsoutfile)
    		if err != nil {
    			log.Fatalf("cover: %s", err)
    		}
    		p.emitMetaData(fd)
    		if err := fd.Close(); err != nil {
    			log.Fatalf("cover: %s", err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    func getHugePageSize() uintptr {
    	var numbuf [20]byte
    	fd := open(&sysTHPSizePath[0], 0 /* O_RDONLY */, 0)
    	if fd < 0 {
    		return 0
    	}
    	ptr := noescape(unsafe.Pointer(&numbuf[0]))
    	n := read(fd, ptr, int32(len(numbuf)))
    	closefd(fd)
    	if n <= 0 {
    		return 0
    	}
    	n-- // remove trailing newline
    	v, ok := atoi(slicebytetostringtmp((*byte)(ptr), int(n)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. src/os/file_windows.go

    	return newFile(h, name, "console")
    }
    
    // NewFile returns a new File with the given file descriptor and
    // name. The returned value will be nil if fd is not a valid file
    // descriptor.
    func NewFile(fd uintptr, name string) *File {
    	h := syscall.Handle(fd)
    	if h == syscall.InvalidHandle {
    		return nil
    	}
    	return newFile(h, name, "file")
    }
    
    func epipecheck(file *File, e error) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    00000110  81 00 db 46 7d 93 2e 12  27 06 48 bc 06 28 21 ab  |...F}...'.H..(!.|
    00000120  7e c4 b6 a2 5d fe 1e 52  45 88 7a 36 47 a5 08 0d  |~...]..RE.z6G...|
    00000130  92 42 5b c2 81 c0 be 97  79 98 40 fb 4f 6d 14 fd  |.B[.....y.@.Om..|
    00000140  2b 13 8b c2 a5 2e 67 d8  d4 09 9e d6 22 38 b7 4a  |+.....g....."8.J|
    00000150  0b 74 73 2b c2 34 f1 d1  93 e5 96 d9 74 7b f3 58  |.ts+.4......t{.X|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000140  06 48 bc 06 28 21 ab 7e  c4 b6 a2 5d fe 1e 52 45  |.H..(!.~...]..RE|
    00000150  88 7a 36 47 a5 08 0d 92  42 5b c2 81 c0 be 97 79  |.z6G....B[.....y|
    00000160  98 40 fb 4f 6d 14 fd 2b  13 8b c2 a5 2e 67 d8 d4  |.@.Om..+.....g..|
    00000170  09 9e d6 22 38 b7 4a 0b  74 73 2b c2 34 f1 d1 93  |..."8.J.ts+.4...|
    00000180  e5 96 d9 74 7b f3 58 9f  6c 61 3c c0 b0 41 d4 d9  |...t{.X.la<..A..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/net/splice_linux_test.go

    		hookFd = hook.srcfd
    	case "dst":
    		hookFd = hook.dstfd
    	default:
    		t.Fatalf("unknown fdType %q", fdType)
    	}
    	if err := rc.Control(func(fd uintptr) {
    		if hook.called && hookFd != int(fd) {
    			t.Fatalf("wrong %s file descriptor: got %d, want %d", fdType, hook.dstfd, int(fd))
    		}
    	}); err != nil {
    		t.Fatalf("syscall.RawConn.Control error: %v", err)
    	}
    }
    
    func (tc spliceTestCase) testFile(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    000002c0  16 03 03 00 ac 0c 00 00  a8 03 00 1d 20 2b 66 1d  |............ +f.|
    000002d0  80 f2 60 32 0f af 6f d3  03 db 28 c1 33 18 1c 5d  |..`2..o...(.3..]|
    000002e0  71 fd 2a 24 f9 3c 4d 76  ca e3 93 8d 25 08 04 00  |q.*$.<Mv....%...|
    000002f0  80 23 e3 34 5f 28 df b8  c9 fd 39 35 a9 bb 14 f9  |.#.4_(....95....|
    00000300  05 77 09 6f 2f e5 91 07  c3 6f cd 57 2a de 7e 93  |.w.o/....o.W*.~.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top