Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 368 for 2014 (0.05 sec)

  1. src/cmd/go/main.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.
    
    //go:generate go test cmd/go -v -run=^TestDocsUpToDate$ -fixdocs
    
    package main
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"path/filepath"
    	rtrace "runtime/trace"
    	"slices"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/bug"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/crypto/tls/key_agreement.go

    // Copyright 2010 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 tls
    
    import (
    	"crypto"
    	"crypto/ecdh"
    	"crypto/md5"
    	"crypto/rsa"
    	"crypto/sha1"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"io"
    )
    
    // A keyAgreement implements the client and server side of a TLS 1.0–1.2 key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/go/types/scope.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/scope.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.
    
    // This file implements Scopes.
    
    package types
    
    import (
    	"fmt"
    	"go/token"
    	"io"
    	"sort"
    	"strings"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/os_plan9.go

    // Copyright 2010 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 runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"internal/stringslite"
    	"unsafe"
    )
    
    type mOS struct {
    	waitsemacount uint32
    	notesig       *int8
    	errstr        *byte
    	ignoreHangup  bool
    }
    
    func closefd(fd int32) int32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/crypto/rsa/pss.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 rsa
    
    // This file implements the RSASSA-PSS signature scheme according to RFC 8017.
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/internal/boring"
    	"errors"
    	"hash"
    	"io"
    )
    
    // Per RFC 8017, Section 9.1
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/go/types/builtins_test.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/builtins_test.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 types_test
    
    import (
    	"fmt"
    	"go/ast"
    	"testing"
    
    	. "go/types"
    )
    
    var builtinCalls = []struct {
    	name, src, sig string
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/crypto/cipher/example_test.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.
    
    package cipher_test
    
    import (
    	"bytes"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/hex"
    	"fmt"
    	"io"
    	"os"
    )
    
    func ExampleNewGCM_encrypt() {
    	// Load your secret key from a safe place and reuse it across multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  8. src/image/image_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 image
    
    import (
    	"image/color"
    	"image/color/palette"
    	"testing"
    )
    
    type image interface {
    	Image
    	Opaque() bool
    	Set(int, int, color.Color)
    	SubImage(Rectangle) Image
    }
    
    func cmp(cm color.Model, c0, c1 color.Color) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  9. src/math/erf.go

    // Copyright 2010 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 math
    
    /*
    	Floating-point error function and complementary error function.
    */
    
    // The original C code and the long comment below are
    // from FreeBSD's /usr/src/lib/msun/src/s_erf.c and
    // came with this notice. The go code is a simplified
    // version of the original C.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  10. src/runtime/os_freebsd.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 runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    type mOS struct{}
    
    //go:noescape
    func thr_new(param *thrparam, size int32) int32
    
    //go:noescape
    func sigaltstack(new, old *stackt)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top