Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Sigmoid (0.14 sec)

  1. src/crypto/internal/bigmod/nat.go

    // Copyright 2021 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 bigmod
    
    import (
    	"errors"
    	"internal/byteorder"
    	"math/big"
    	"math/bits"
    )
    
    const (
    	// _W is the size in bits of our limbs.
    	_W = bits.UintSize
    	// _S is the size in bytes of our limbs.
    	_S = _W / 8
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat_test.go

    // Copyright 2021 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 bigmod
    
    import (
    	"fmt"
    	"math/big"
    	"math/bits"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    	"testing/quick"
    )
    
    func (n *Nat) String() string {
    	var limbs []string
    	for i := range n.limbs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    var excluded = map[string]bool{
    	"builtin": true,
    
    	// go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/go/types/stdlib_test.go

    var excluded = map[string]bool{
    	"builtin": true,
    
    	// See go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	< crypto/internal/boring/bbig
    	< crypto/rand
    	< crypto/internal/mlkem768
    	< crypto/ed25519
    	< encoding/asn1
    	< golang.org/x/crypto/cryptobyte/asn1
    	< golang.org/x/crypto/cryptobyte
    	< crypto/internal/bigmod
    	< crypto/dsa, crypto/elliptic, crypto/rsa
    	< crypto/ecdsa
    	< CRYPTO-MATH;
    
    	CGO, net !< CRYPTO-MATH;
    
    	# TLS, Prince of Dependencies.
    	CRYPTO-MATH, NET, container/list, encoding/hex, encoding/pem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top