Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 422 for Hex (0.02 sec)

  1. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

    import org.bouncycastle.openpgp.PGPPublicKey;
    import org.bouncycastle.openpgp.PGPSignature;
    
    import java.util.Locale;
    
    /**
     * A normalised form for keys, which are friendliest for users as hex strings but used internally as longs.
     */
    public class PgpKeyId implements Comparable<PgpKeyId> {
    
        private final long asLong;
        private final String asHex;
    
        public PgpKeyId(long keyId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt

     * Regular lines contain fields separated by semicolons.
     *
     * The first element on each line is a single hex code point (like 0041) or a hex code point range
     * (like 0030..0039).
     *
     * The second element on each line is a mapping type, like `valid` or `mapped`.
     *
     * For lines that contain a mapping target, the next thing is a sequence of hex code points (like
     * 0031 2044 0034).
     *
     * All other data is ignored.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/ftbbn0g01.sng

    #SNG: from ftbbn0g01.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using grayscale;
    }
    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)
  4. src/image/png/testdata/pngsuite/basn0g02-29.sng

    #SNG: from basn0g02-29.png
    IHDR {
        width: 29; height: 29; bitdepth: 8;
        using grayscale;
    }
    gAMA {1.0000}
    IMAGE {
        pixels hex
    0000000055555555aaaaaaaaffffffff0000000055555555aaaaaaaaff
    0000000055555555aaaaaaaaffffffff0000000055555555aaaaaaaaff
    0000000055555555aaaaaaaaffffffff0000000055555555aaaaaaaaff
    0000000055555555aaaaaaaaffffffff0000000055555555aaaaaaaaff
    55555555aaaaaaaaffffffff0000000055555555aaaaaaaaffffffff00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  5. src/expvar/expvar.go

    			case '\n':
    				b = append(b, '\\', 'n')
    			case '\r':
    				b = append(b, '\\', 'r')
    			case '\t':
    				b = append(b, '\\', 't')
    			default:
    				b = append(b, '\\', 'u', hex[(r>>12)&0xf], hex[(r>>8)&0xf], hex[(r>>4)&0xf], hex[(r>>0)&0xf])
    			}
    		case r < utf8.RuneSelf:
    			b = append(b, byte(r))
    		default:
    			b = utf8.AppendRune(b, r)
    		}
    	}
    	b = append(b, '"')
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	g0.stack.lo = 0
    	g0.stackguard0 = g0.stack.lo + stackGuard
    	g0.stackguard1 = g0.stackguard0
    
    	print("Exception ", hex(info.exceptioncode), " ", hex(info.exceptioninformation[0]), " ", hex(info.exceptioninformation[1]), " ", hex(r.ip()), "\n")
    
    	print("PC=", hex(r.ip()), "\n")
    	if g0.m.incgo && gp == g0.m.g0 && g0.m.curg != nil {
    		if iscgo {
    			print("signal arrived during external code execution\n")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/copycerts/copycerts_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package copycerts
    
    import (
    	"context"
    	"encoding/hex"
    	"os"
    	"path/filepath"
    	"regexp"
    	goruntime "runtime"
    	"testing"
    
    	"github.com/lithammer/dedent"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. src/hash/marshal_test.go

    package hash_test
    
    import (
    	"bytes"
    	"crypto/md5"
    	"crypto/sha1"
    	"crypto/sha256"
    	"crypto/sha512"
    	"encoding"
    	"encoding/hex"
    	"hash"
    	"hash/adler32"
    	"hash/crc32"
    	"hash/crc64"
    	"hash/fnv"
    	"testing"
    )
    
    func fromHex(s string) []byte {
    	b, err := hex.DecodeString(s)
    	if err != nil {
    		panic(err)
    	}
    	return b
    }
    
    var marshalTests = []struct {
    	name   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 07:45:46 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  9. cmd/streaming-signature-v4.go

    }
    
    func (cr *s3ChunkedReader) Close() (err error) {
    	return nil
    }
    
    // Now, we read one chunk from the underlying reader.
    // A chunk has the following format:
    //
    //	<chunk-size-as-hex> + ";chunk-signature=" + <signature-as-hex> + "\r\n" + <payload> + "\r\n"
    //
    // First, we read the chunk size but fail if it is larger
    // than 16 MiB. We must not accept arbitrary large chunks.
    // One 16 MiB is a reasonable max limit.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/copycerts/copycerts.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package copycerts
    
    import (
    	"context"
    	"encoding/hex"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"github.com/pkg/errors"
    
    	v1 "k8s.io/api/core/v1"
    	rbac "k8s.io/api/rbac/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top