Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 422 for Hex (0.02 sec)

  1. src/image/png/testdata/pngsuite/ftbbn0g02.sng

    #SNG: from ftbbn0g02.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using grayscale;
    }
    gAMA {0.45455}
    bKGD {gray: 0;}
    tRNS {
        gray: 0;
    }
    IMAGE {
        pixels hex
    0000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/index_test.go

    // Copyright 2022 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 modindex
    
    import (
    	"encoding/hex"
    	"encoding/json"
    	"go/build"
    	"internal/diff"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	isTest = true
    	enabled = true // to allow GODEBUG=goindex=0 go test, when things are very broken
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/net/PercentEscaperTest.java

        }
      }
    
      /** Helper to manually escape a 7-bit ascii character */
      private String escapeAscii(char c) {
        Preconditions.checkArgument(c < 128);
        String hex = "0123456789ABCDEF";
        return "%" + hex.charAt((c >> 4) & 0xf) + hex.charAt(c & 0xf);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. src/log/slog/json_handler.go

    			case '\n':
    				char('n')
    			case '\r':
    				char('r')
    			case '\t':
    				char('t')
    			default:
    				// This encodes bytes < 0x20 except for \t, \n and \r.
    				str(`u00`)
    				char(hex[b>>4])
    				char(hex[b&0xF])
    			}
    			i++
    			start = i
    			continue
    		}
    		c, size := utf8.DecodeRuneInString(s[i:])
    		if c == utf8.RuneError && size == 1 {
    			if start < i {
    				str(s[start:i])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/image/png/testdata/pngsuite/ftbbn0g04.sng

    #SNG: from ftbbn0g04.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using grayscale;
    }
    gAMA {1.0000}
    bKGD {gray: 0;}
    tRNS {
        gray: 255;
    }
    IMAGE {
        pixels hex
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffddcceeffffffffffffffffffffffffffffff
    ffffffffffffffffffffffeebb776655446699ddffffffffffffffffffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  6. src/html/escape.go

    		if len(s) <= 3 { // We need to have at least "&#.".
    			b[dst] = b[src]
    			return dst + 1, src + 1
    		}
    		i++
    		c := s[i]
    		hex := false
    		if c == 'x' || c == 'X' {
    			hex = true
    			i++
    		}
    
    		x := '\x00'
    		for i < len(s) {
    			c = s[i]
    			i++
    			if hex {
    				if '0' <= c && c <= '9' {
    					x = 16*x + rune(c) - '0'
    					continue
    				} else if 'a' <= c && c <= 'f' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  7. internal/etag/etag.go

    type ETag []byte
    
    // String returns the string representation of the ETag.
    //
    // The returned string is a hex representation of the
    // binary ETag with an optional '-<part-number>' suffix.
    func (e ETag) String() string {
    	if e.IsMultipart() {
    		return hex.EncodeToString(e[:16]) + string(e[16:])
    	}
    	return hex.EncodeToString(e)
    }
    
    // IsEncrypted reports whether the ETag is encrypted.
    func (e ETag) IsEncrypted() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/crypto/elliptic/p224_test.go

    // Copyright 2012 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 elliptic
    
    import (
    	"encoding/hex"
    	"fmt"
    	"math/big"
    	"testing"
    )
    
    type baseMultTest struct {
    	k    string
    	x, y string
    }
    
    var p224BaseMultTests = []baseMultTest{
    	{
    		"1",
    		"b70e0cbd6bb4bf7f321390b94a03c1d356c21122343280d6115c1d21",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 19:01:13 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  9. src/image/png/testdata/pngsuite/basn3p01.sng

    IHDR {
        width: 32; height: 32; bitdepth: 1;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        (238,255, 34)     # rgb = (0xee,0xff,0x22)
        ( 34,102,255)     # rgb = (0x22,0x66,0xff)
    }
    IMAGE {
        pixels hex
    0f0f0f0f
    0f0f0f0f
    0f0f0f0f
    0f0f0f0f
    f0f0f0f0
    f0f0f0f0
    f0f0f0f0
    f0f0f0f0
    0f0f0f0f
    0f0f0f0f
    0f0f0f0f
    0f0f0f0f
    f0f0f0f0
    f0f0f0f0
    f0f0f0f0
    f0f0f0f0
    0f0f0f0f
    0f0f0f0f
    0f0f0f0f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 528 bytes
    - Viewed (0)
  10. src/image/png/testdata/pngsuite/basn0g04-31.sng

    #SNG: from basn0g04-31.png
    IHDR {
        width: 31; height: 31; bitdepth: 8;
        using grayscale;
    }
    gAMA {1.0000}
    IMAGE {
        pixels hex
    00000000111111112222222233333333444444445555555566666666777777
    00000000111111112222222233333333444444445555555566666666777777
    00000000111111112222222233333333444444445555555566666666777777
    00000000111111112222222233333333444444445555555566666666777777
    11111111222222223333333344444444555555556666666677777777888888
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
Back to top