Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 235 for bigN (3.52 sec)

  1. android/guava-tests/test/com/google/common/base/Utf8Test.java

       * @param numBytes the number of bytes in the byte array
       * @param expectedCount the expected number of roundtrippable permutations
       * @param start the starting bytes encoded as a long as big-endian
       * @param lim the limit of bytes to process encoded as a long as big-endian, or -1 to mean the max
       *     limit for numBytes
       */
      @GwtIncompatible // java.nio.charset.Charset
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    if (codeSizeSoFar + getEstimatedSingleLambdaHandlingCodeLength(argumentTypes) + getEstimatedEpilogueLength() >= MAX_CODE_SIZE) {
                        // In theory, it is possible to have a lambda so big, its handling won't fit in a single method, and such a lambda will cause an infinite loop here.
                        // However, the number of captured lambda variables is limited by the max number of method arguments allowed by the JVM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    // Load input block into V1-V4
    // in big endian order and
    // update blk_inp by 64.
    #define LOAD_INPUT_BLOCK64(blk_inp) \
    	MOVD $16, R16; \
    	MOVD $32, R17; \
    	MOVD $48, R18; \
    	P8_LXVB16X(blk_inp,R0,V1); \
    	P8_LXVB16X(blk_inp,R16,V2); \
    	P8_LXVB16X(blk_inp,R17,V3); \
    	P8_LXVB16X(blk_inp,R18,V4); \
    	ADD $64, blk_inp
    
    // Load input block into V1-V8
    // in big endian order and
    // Update blk_inp by 128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/dist/buildtool.go

    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    // These will be imported during bootstrap as bootstrap/name, like bootstrap/math/big.
    var bootstrapDirs = []string{
    	"cmp",
    	"cmd/asm",
    	"cmd/asm/internal/...",
    	"cmd/cgo",
    	"cmd/compile",
    	"cmd/compile/internal/...",
    	"cmd/internal/archive",
    	"cmd/internal/bio",
    	"cmd/internal/codesign",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/serviceaccount/openidmetadata_test.go

    limitations under the License.
    */
    
    package serviceaccount_test
    
    import (
    	"crypto/ecdsa"
    	"crypto/rsa"
    	"crypto/x509"
    	"encoding/json"
    	"math/big"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"testing"
    
    	restful "github.com/emicklei/go-restful/v3"
    	"github.com/google/go-cmp/cmp"
    	jose "gopkg.in/square/go-jose.v2"
    
    	"k8s.io/kubernetes/pkg/routes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    import (
    	"bytes"
    	"context"
    	cryptorand "crypto/rand"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/base64"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"io/ioutil"
    	"math/big"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/runtime/mgcstack.go

    	workbufhdr
    	next *stackObjectBuf
    }
    
    func init() {
    	if unsafe.Sizeof(stackWorkBuf{}) > unsafe.Sizeof(workbuf{}) {
    		panic("stackWorkBuf too big")
    	}
    	if unsafe.Sizeof(stackObjectBuf{}) > unsafe.Sizeof(workbuf{}) {
    		panic("stackObjectBuf too big")
    	}
    }
    
    // A stackObject represents a variable on the stack that has had
    // its address taken.
    type stackObject struct {
    	_     sys.NotInHeap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/const.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typecheck
    
    import (
    	"fmt"
    	"go/constant"
    	"go/token"
    	"math"
    	"math/big"
    	"unicode"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    func roundFloat(v constant.Value, sz int64) constant.Value {
    	switch sz {
    	case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo.go

    // The build info blob left by the linker is identified by
    // a 16-byte header, consisting of buildInfoMagic (14 bytes),
    // the binary's pointer size (1 byte),
    // and whether the binary is big endian (1 byte).
    var buildInfoMagic = []byte("\xff Go buildinf:")
    
    // ReadFile returns build information embedded in a Go binary
    // file at the given path. Most information is only available for binaries built
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/gc.go

    		allocTotal = 32 << 20
    
    		// The page cache could hide 64 8-KiB pages from the scavenger today.
    		maxPageCache = (8 << 10) * 64
    	)
    
    	// How big the allocations are needs to depend on the page size.
    	// If the page size is too big and the allocations are too small,
    	// they might not be aligned to the physical page size, so the scavenger
    	// will gloss over them.
    	pageSize := os.Getpagesize()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top