Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 328 for 2014 (0.03 sec)

  1. src/os/os_windows_test.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os_test
    
    import (
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"internal/poll"
    	"internal/syscall/windows"
    	"internal/syscall/windows/registry"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadelf/ldelf.go

    )
    
    /*
    Derived from Plan 9 from User Space's src/libmach/elf.h, elf.c
    https://github.com/9fans/plan9port/tree/master/src/libmach/
    
    	Copyright © 2004 Russ Cox.
    	Portions Copyright © 2008-2010 Google Inc.
    	Portions Copyright © 2010 The Go Authors.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/compress/bzip2/bzip2.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bzip2 implements bzip2 decompression.
    package bzip2
    
    import "io"
    
    // There's no RFC for bzip2. I used the Wikipedia page for reference and a lot
    // of guessing: https://en.wikipedia.org/wiki/Bzip2
    // The source code to pyflate was useful for debugging:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/html/template/js.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"strings"
    	"unicode/utf8"
    )
    
    // jsWhitespace contains all of the JS whitespace characters, as defined
    // by the \s character class.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/net/http/cgi/host_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests for package cgi
    
    package cgi
    
    import (
    	"bufio"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/net/http/cgi/host.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements the host side of CGI (being the webserver
    // parent process).
    
    // Package cgi implements CGI (Common Gateway Interface) as specified
    // in RFC 3875.
    //
    // Note that using CGI means starting a new process to handle each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/net/http/fcgi/fcgi_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fcgi
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"net/http"
    	"strings"
    	"testing"
    	"time"
    )
    
    var sizeTests = []struct {
    	size  uint32
    	bytes []byte
    }{
    	{0, []byte{0x00}},
    	{127, []byte{0x7F}},
    	{128, []byte{0x80, 0x00, 0x00, 0x80}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/go/types/operand.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/operand.go
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file defines operands and associated operations.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/token"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/plist.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package obj
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"internal/abi"
    	"strings"
    )
    
    type Plist struct {
    	Firstpc *Prog
    	Curfn   Func
    }
    
    // ProgAlloc is a function that allocates Progs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-ECDSA

    00000260  e4 c7 78 0d ae cb be 9e  4e 36 24 31 7b 6a 0f 39  |..x.....N6$1{j.9|
    00000270  95 12 07 8f 2a 16 03 03  00 b6 0c 00 00 b2 03 00  |....*...........|
    00000280  1d 20 04 b4 79 b4 2c 1d  0f b3 4b ff 67 e7 24 88  |. ..y.,...K.g.$.|
    00000290  d6 db 4f 1e 66 da 0e f2  89 5a 53 ed 4e ba ad 4c  |..O.f....ZS.N..L|
    000002a0  81 0a 04 03 00 8a 30 81  87 02 42 01 fb 16 53 43  |......0...B...SC|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top