Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 139 of 139 for 2014 (0.31 sec)

  1. src/math/big/arith_ppc64x.s

    // 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.
    
    //go:build !math_big_pure_go && (ppc64 || ppc64le)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    // func addVV(z, y, y []Word) (c Word)
    // z[i] = x[i] + y[i] for all i, carrying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.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 http
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"log"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    )
    
    var writeSetCookiesTests = []struct {
    	Cookie *Cookie
    	Raw    string
    }{
    	{
    		&Cookie{Name: "cookie-1", Value: "v$1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/net/lookup.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 net
    
    import (
    	"context"
    	"errors"
    	"internal/nettrace"
    	"internal/singleflight"
    	"net/netip"
    	"sync"
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    // protocols contains minimal mappings between internet protocol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    // Copyright 2015 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 ssa
    
    import (
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"fmt"
    	"math"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.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 x509
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/x509/pkix"
    	"errors"
    	"fmt"
    	"net"
    	"net/url"
    	"reflect"
    	"runtime"
    	"strings"
    	"time"
    	"unicode/utf8"
    )
    
    type InvalidReason int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins0.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.
    
    // builtin calls
    
    package builtins
    
    import "unsafe"
    
    func f0() {}
    
    func append1() {
    	var b byte
    	var x int
    	var s []byte
    	_ = append() // ERROR "not enough arguments"
    	_ = append("foo" /* ERROR "must be a slice" */ )
    	_ = append(nil /* ERROR "must be a slice" */ , s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. src/runtime/map_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 runtime_test
    
    import (
    	"fmt"
    	"internal/abi"
    	"internal/goarch"
    	"internal/testenv"
    	"math"
    	"os"
    	"reflect"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"unsafe"
    )
    
    func TestHmapSize(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/text/template/exec.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 (
    	"errors"
    	"fmt"
    	"internal/fmtsort"
    	"io"
    	"reflect"
    	"runtime"
    	"strings"
    	"text/template/parse"
    )
    
    // maxExecDepth specifies the maximum stack depth of templates within
    // templates. This limit is only practically reached by accidentally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.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.
    
    // Test cases for cgo.
    // Both the import "C" prologue and the main file are sorted by issue number.
    // This file contains C definitions (not just declarations)
    // and so it must NOT contain any //export directives on Go functions.
    // See testx.go for exports.
    
    package cgotest
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top