Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for Hex (0.04 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            StringBuilder hexString = new StringBuilder();
            for (int i = 0; i < byteData.length; i++) {
                String hex = Integer.toHexString(0xff & byteData[i]);
                if (hex.length() == 1) {
                    hexString.append('0');
                }
                hexString.append(hex);
            }
    
            return hexString.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    throws org.apache.commons.codec.EncoderException; public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException; static void <clinit>(); } org/apache/commons/codec/binary/Hex.class package org.apache.commons.codec.binary; public synchronized class Hex { private static char[] digits; public void Hex(); public static char[] encodeHex(byte[]); public static byte[] decodeHex(char[]) throws Exception; static void <clinit>(); } org/apache/commons/codec/BinaryDecoder.class package org.apache.commons.codec;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  3. pkg/wasm/cache_test.go

    			w.Write(invalidHTTPData)
    		} else {
    			w.Write(httpData)
    		}
    	}))
    	defer ts.Close()
    	httpDataSha := sha256.Sum256(httpData)
    	httpDataCheckSum := hex.EncodeToString(httpDataSha[:])
    	invalidHTTPDataSha := sha256.Sum256(invalidHTTPData)
    	invalidHTTPDataCheckSum := hex.EncodeToString(invalidHTTPDataSha[:])
    
    	reg := registry.New()
    	// Set up a fake registry for OCI images.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package wasm
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/hex"
    	"fmt"
    	"net/url"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-containerregistry/pkg/name"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/html/template/js.go

    }
    
    var jsStrReplacementTable = []string{
    	0:    `\u0000`,
    	'\t': `\t`,
    	'\n': `\n`,
    	'\v': `\u000b`, // "\v" == "v" on IE 6.
    	'\f': `\f`,
    	'\r': `\r`,
    	// Encode HTML specials as hex so the output can be embedded
    	// in HTML attributes without further encoding.
    	'"':  `\u0022`,
    	'`':  `\u0060`,
    	'&':  `\u0026`,
    	'\'': `\u0027`,
    	'+':  `\u002b`,
    	'/':  `\/`,
    	'<':  `\u003c`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    		// TODO(austin): Don't back up if the previous frame
    		// was a sigpanic.
    		pc--
    	}
    
    	print(hex(pc))
    	if !fn.valid() {
    		print(" [unknown PC]")
    	} else {
    		name := funcname(fn)
    		file, line := funcline(fn, pc)
    		print(" [", name, "+", hex(pc-fn.entry()),
    			" ", file, ":", line, "]")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    func sigNotOnStack(sig uint32, sp uintptr, mp *m) {
    	println("signal", sig, "received but handler not on signal stack")
    	print("mp.gsignal stack [", hex(mp.gsignal.stack.lo), " ", hex(mp.gsignal.stack.hi), "], ")
    	print("mp.g0 stack [", hex(mp.g0.stack.lo), " ", hex(mp.g0.stack.hi), "], sp=", hex(sp), "\n")
    	throw("non-Go code set up signal handler without SA_ONSTACK flag")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. cmd/encryption-v1.go

    }
    
    // DecryptETag decrypts the ETag that is part of given object
    // with the given object encryption key.
    //
    // However, DecryptETag does not try to decrypt the ETag if
    // it consists of a 128 bit hex value (32 hex chars) and exactly
    // one '-' followed by a 32-bit number.
    // This special case addresses randomly-generated ETags generated
    // by the MinIO server when running in non-compat mode. These
    // random ETags are not encrypt.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `size`: The size of the file in bytes. A number.
    - `sha1`: The SHA1 hash of the file content. A hex string.
    - `sha256`: The SHA-256 hash of the file content. A hex string.
    - `sha512`: The SHA-512 hash of the file content. A hex string.
    - `md5`: The MD5 hash of the file content. A hex string.
    
    ### `thirdPartyCompatibility` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/net/netip/fuzz_test.go

    	"1.2.3.4%eth0",
    	// IPv4 field must have at least one digit.
    	".1.2.3",
    	"1.2.3.",
    	"1..2.3",
    	// IPv4 address too long.
    	"1.2.3.4.5",
    	// IPv4 in dotted octal form.
    	"0300.0250.0214.0377",
    	// IPv4 in dotted hex form.
    	"0xc0.0xa8.0x8c.0xff",
    	// IPv4 in class B form.
    	"192.168.12345",
    	// IPv4 in class B form, with a small enough number to be
    	// parseable as a regular dotted decimal field.
    	"127.0.1",
    	// IPv4 in class A form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top