Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 282 for big4 (0.07 sec)

  1. android/guava/src/com/google/common/primitives/Chars.java

        int pos = 0;
        for (char[] array : arrays) {
          System.arraycopy(array, 0, result, pos, array.length);
          pos += array.length;
        }
        return result;
      }
    
      /**
       * Returns a big-endian representation of {@code value} in a 2-element byte array; equivalent to
       * {@code ByteBuffer.allocate(2).putChar(value).array()}. For example, the input value {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    				},
    				{
    					Name:    "Who?",
    					Address: "******@****.***",
    				},
    			},
    		},
    		{
    			`<******@****.***>, "Giant; \"Big\" Box" <******@****.***>`,
    			[]*Address{
    				{
    					Address: "******@****.***",
    				},
    				{
    					Name:    `Giant; "Big" Box`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 5322, Appendix A.6.1
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

    /**
     * Base artifact transform that instruments plugins with Gradle instrumentation, e.g. for configuration cache detection or property upgrades.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache")
    public abstract class BaseInstrumentingArtifactTransform implements TransformAction<Parameters> {
    
        public interface Parameters extends TransformParameters {
            @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    			reject:  "decoding tagged positive bigint value to interface{} can't reproduce this value without losing distinction between float and integer",
    			fixme:   "decoding bigint to interface{} must not produce math/big.Int",
    		},
    		{
    			example: hex("3bffffffffffffffff"),
    			reject:  "-2^64-1 overflows int64 and falling back to float64 (as with JSON) loses distinction between float and integer",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	// not require trampoline generation.
    	big := false
    	for _, s := range ctxt.Textp {
    		sect, n, va = assignAddress(ctxt, sect, n, s, va, false, big)
    		if va-start >= limit {
    			big = true
    			break
    		}
    	}
    
    	// Second pass: only if it is too big, insert trampolines for too-far
    	// jumps and targets with unknown addresses.
    	if big {
    		// reset addresses
    		for _, s := range ctxt.Textp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. src/image/gif/reader_test.go

    	copy(gif, testGIF)
    	// Make the bounds too big, just by one.
    	gif[32] = 2
    	want := "gif: frame bounds larger than image bounds"
    	try(t, gif, want)
    
    	// Make the bounds too small; does not trigger bounds
    	// check, but now there's too much data.
    	gif[32] = 0
    	want = "gif: too much image data"
    	try(t, gif, want)
    	gif[32] = 1
    
    	// Make the bounds really big, expect an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/hash/crc64/crc64.go

    type digest struct {
    	crc uint64
    	tab *Table
    }
    
    // New creates a new hash.Hash64 computing the CRC-64 checksum using the
    // polynomial represented by the [Table]. Its Sum method will lay the
    // value out in big-endian byte order. The returned Hash64 also
    // implements [encoding.BinaryMarshaler] and [encoding.BinaryUnmarshaler] to
    // marshal and unmarshal the internal state of the hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/internal/trace/gc_test.go

    					break
    				}
    			}
    		}
    	}
    }
    
    func TestMMUTrace(t *testing.T) {
    	// Can't be t.Parallel() because it modifies the
    	// testingOneBand package variable.
    	if testing.Short() {
    		// test input too big for all.bash
    		t.Skip("skipping in -short mode")
    	}
    	check := func(t *testing.T, mu [][]trace.MutatorUtil) {
    		mmuCurve := trace.NewMMUCurve(mu)
    
    		// Test the optimized implementation against the "obviously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/crypto/tls/boring_test.go

    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/internal/boring/fipstls"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/pem"
    	"fmt"
    	"internal/obscuretestdata"
    	"math/big"
    	"net"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestBoringServerProtocolVersion(t *testing.T) {
    	test := func(t *testing.T, name string, v uint16, msg string) {
    		t.Run(name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/math/big/int.go

    }
    
    // SetBytes interprets buf as the bytes of a big-endian unsigned
    // integer, sets z to that value, and returns z.
    func (z *Int) SetBytes(buf []byte) *Int {
    	z.abs = z.abs.setBytes(buf)
    	z.neg = false
    	return z
    }
    
    // Bytes returns the absolute value of x as a big-endian byte slice.
    //
    // To use a fixed length slice, or a preallocated one, use [Int.FillBytes].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top