Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 422 for Hex (0.05 sec)

  1. src/image/png/testdata/pngsuite/basn0g01-30.sng

    #SNG: from basn0g01-30.png
    IHDR {
        width: 30; height: 30; bitdepth: 8;
        using grayscale;
    }
    gAMA {1.0000}
    IMAGE {
        pixels hex
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000
    ffffffff0000ffffffffffff0000ffffffffffffffffffffffffff000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  2. src/regexp/syntax/doc.go

    	\v             vertical tab character (== \013)
    	\*             literal *, for any punctuation character *
    	\123           octal character code (up to three digits)
    	\x7F           hex character code (exactly two digits)
    	\x{10FFFF}     hex character code
    	\Q...\E        literal text ... even if ... has punctuation
    
    Character class elements:
    
    	x              single character
    	A-Z            character range (inclusive)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    }
    
    // compareSignatureV4 returns true if and only if both signatures
    // are equal. The signatures are expected to be HEX encoded strings
    // according to the AWS S3 signature V4 spec.
    func compareSignatureV4(sig1, sig2 string) bool {
    	// The CTC using []byte(str) works because the hex encoding
    	// is unique for a sequence of bytes. See also compareSignatureV2.
    	return subtle.ConstantTimeCompare([]byte(sig1), []byte(sig2)) == 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/compress/flate/flate_test.go

    // This test tests some internals of the flate package.
    // The tests in package compress/gzip serve as the
    // end-to-end test of the decompressor.
    
    package flate
    
    import (
    	"bytes"
    	"encoding/hex"
    	"io"
    	"strings"
    	"testing"
    )
    
    // The following test should not panic.
    func TestIssue5915(t *testing.T) {
    	bits := []int{4, 0, 0, 6, 4, 3, 2, 3, 3, 4, 4, 5, 0, 0, 0, 0, 5, 5, 6,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  5. src/image/png/testdata/pngsuite/basn3p04.sng

        (255,  0,187)     # rgb = (0xff,0x00,0xbb)
        (255,187,  0)     # rgb = (0xff,0xbb,0x00)
        (  0, 68,255)     # rgb = (0x00,0x44,0xff)
        (  0,255, 68)     # rgb = (0x00,0xff,0x44)
    }
    IMAGE {
        pixels hex
    88885555ccccaaaa77773333eeee9999
    88885555ccccaaaa77773333eeee9999
    88885555ccccaaaa77773333eeee9999
    88885555ccccaaaa77773333eeee9999
    5555ccccaaaa77773333eeee99991111
    5555ccccaaaa77773333eeee99991111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  6. src/image/png/testdata/pngsuite/basn3p02.sng

    PLTE {
        (  0,255,  0)     # rgb = (0x00,0xff,0x00)
        (255,  0,  0)     # rgb = (0xff,0x00,0x00)
        (255,255,  0)     # rgb = (0xff,0xff,0x00)
        (  0,  0,255)     # rgb = (0x00,0x00,0xff)
    }
    IMAGE {
        pixels hex
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    ff55aa00ff55aa00
    00ff55aa00ff55aa
    00ff55aa00ff55aa
    00ff55aa00ff55aa
    00ff55aa00ff55aa
    aa00ff55aa00ff55
    aa00ff55aa00ff55
    aa00ff55aa00ff55
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 878 bytes
    - Viewed (0)
  7. cmd/object-api-deleteobject_test.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"crypto/md5"
    	"encoding/hex"
    	"strings"
    	"testing"
    )
    
    // Wrapper for calling DeleteObject tests for both Erasure multiple disks and single node setup.
    func TestDeleteObject(t *testing.T) {
    	ExecObjectLayerTest(t, testDeleteObject)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/crypto/internal/hpke/hpke_test.go

    // license that can be found in the LICENSE file.
    
    package hpke
    
    import (
    	"bytes"
    	"encoding/hex"
    	"encoding/json"
    	"os"
    	"strconv"
    	"strings"
    	"testing"
    
    	"crypto/ecdh"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    )
    
    func mustDecodeHex(t *testing.T, in string) []byte {
    	b, err := hex.DecodeString(in)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/erasure-metadata-utils_test.go

    			var first [17]int
    			rng := rand.New(rand.NewSource(0))
    			var tmp [16]byte
    			rng.Read(tmp[:])
    			prefix := hex.EncodeToString(tmp[:])
    			for i := 0; i < 10000; i++ {
    				rng.Read(tmp[:])
    
    				y := hashOrder(fmt.Sprintf("%s/%x", prefix, hex.EncodeToString(tmp[:3])), x)
    				first[y[0]]++
    			}
    			t.Log("first:", first[:x])
    		})
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/strconv/atoi.go

    	}
    
    	// Optional base prefix.
    	hex := false
    	if len(s) >= 2 && s[0] == '0' && (lower(s[1]) == 'b' || lower(s[1]) == 'o' || lower(s[1]) == 'x') {
    		i = 2
    		saw = '0' // base prefix counts as a digit for "underscore as digit separator"
    		hex = lower(s[1]) == 'x'
    	}
    
    	// Number proper.
    	for ; i < len(s); i++ {
    		// Digits are always okay.
    		if '0' <= s[i] && s[i] <= '9' || hex && 'a' <= lower(s[i]) && lower(s[i]) <= 'f' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top