Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for 2014 (0.06 sec)

  1. src/math/big/float_test.go

    		{0, 1, 2, 3, '+', (*Float).Add},
    		{1, 2, 0, 2, '+', (*Float).Add},
    		{2, 0, 1, 1, '+', (*Float).Add},
    
    		{0, 0, 0, 0, '-', (*Float).Sub},
    		{0, 1, 2, -1, '-', (*Float).Sub},
    		{1, 2, 0, 2, '-', (*Float).Sub},
    		{2, 0, 1, -1, '-', (*Float).Sub},
    
    		{0, 0, 0, 0, '*', (*Float).Mul},
    		{0, 1, 2, 2, '*', (*Float).Mul},
    		{1, 2, 0, 0, '*', (*Float).Mul},
    		{2, 0, 1, 0, '*', (*Float).Mul},
    
    		// {0, 0, 0, 0, '/', (*Float).Quo}, // panics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define ZER   V26
    #define SEL1  V27
    #define CAR1  V28
    #define CAR2  V29
    /*
     * http://www.hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2004-hmv
     * Cost: 4M + 4S + 1*half + 5add + 2*2 + 1*3.
     * Source: 2004 Hankerson–Menezes–Vanstone, page 91.
     * 	A  = 3(X₁-Z₁²)×(X₁+Z₁²)
     * 	B  = 2Y₁
     * 	Z₃ = B×Z₁
     * 	C  = B²
     * 	D  = C×X₁
     * 	X₃ = A²-2D
     * 	Y₃ = (D-X₃)×A-C²/2
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    #define ZER   V26
    #define SEL1  V27
    #define CAR1  V28
    #define CAR2  V29
    /*
     * https://www.hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2004-hmv
     * Cost: 4M + 4S + 1*half + 5add + 2*2 + 1*3.
     * Source: 2004 Hankerson–Menezes–Vanstone, page 91.
     * 	A  = 3(X₁-Z₁²)×(X₁+Z₁²)
     * 	B  = 2Y₁
     * 	Z₃ = B×Z₁
     * 	C  = B²
     * 	D  = C×X₁
     * 	X₃ = A²-2D
     * 	Y₃ = (D-X₃)×A-C²/2
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.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.
    
    // TLS low level connection and record layer
    
    package tls
    
    import (
    	"bytes"
    	"context"
    	"crypto/cipher"
    	"crypto/subtle"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"hash"
    	"internal/godebug"
    	"io"
    	"net"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/net/http/httputil/reverseproxy_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.
    
    // Reverse proxy tests.
    
    package httputil
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/text/template/exec_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 template
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    )
    
    var debug = flag.Bool("debug", false, "show the errors produced by the tests")
    
    // T has lots of interesting pieces to use to test execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/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 test
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"internal/coverage"
    	"internal/platform"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/runtime/zcallback_windows_arm64.s

    	B	runtime·callbackasm1(SB)
    	MOVD	$199, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$200, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$201, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$202, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$203, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$204, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$205, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$206, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$207, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  9. src/net/http/transport.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.
    
    // HTTP client implementation. See RFC 7230 through 7235.
    //
    // This is the low-level Transport implementation of RoundTripper.
    // The high-level interface is in client.go.
    
    package http
    
    import (
    	"bufio"
    	"compress/gzip"
    	"container/list"
    	"context"
    	"crypto/tls"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/html/template/exec_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 template execution, copied from text/template.
    
    package template
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    	"text/template"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top