Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for 512g (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/hash/DefaultChecksumService.java

                case "sha-1":
                    return sha1(src);
                case "sha256":
                case "sha-256":
                    return sha256(src);
                case "sha512":
                case "sha-512":
                    return sha512(src);
            }
            throw new UnsupportedOperationException("Cannot hash with algorith " + algorithm);
        }
    
        private HashCode doHash(File file, CachingFileHasher hasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 04 22:23:37 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/env/var_test.go

    	}
    
    	v = ev.Get()
    	if v != 789*time.Second {
    		t.Errorf("Expected 789 seconds, got %v", v)
    	}
    }
    
    func TestDesc(t *testing.T) {
    	reset()
    
    	_ = RegisterDurationVar(testVar+"5", 123*time.Second, "A duration")
    	_ = RegisterStringVar(testVar+"1", "123", "A string")
    	_ = RegisterIntVar(testVar+"2", 456, "An int")
    	_ = RegisterBoolVar(testVar+"3", true, "A bool")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/archive/tar/reader_test.go

    	trash := strings.Repeat("garbage ", 64) // Exactly 512 bytes
    
    	vectors := []struct {
    		input string // Input stream
    		cnt   int    // Expected number of headers read
    		err   error  // Expected error outcome
    	}{
    		{"", 0, io.EOF}, // Empty file is a "valid" tar file
    		{data1[:511], 0, io.ErrUnexpectedEOF},
    		{data1[:512], 1, io.ErrUnexpectedEOF},
    		{data1[:1024], 1, io.EOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/tunneling_test.go

    	{
    		Port:        3128,
    		HTTPVersion: forwardproxy.HTTP1,
    		TLSEnabled:  false,
    	},
    	{
    		Port:        4128,
    		HTTPVersion: forwardproxy.HTTP1,
    		TLSEnabled:  true,
    	},
    	{
    		Port:        5128,
    		HTTPVersion: forwardproxy.HTTP2,
    		TLSEnabled:  false,
    	},
    	{
    		Port:        6128,
    		HTTPVersion: forwardproxy.HTTP2,
    		TLSEnabled:  true,
    	},
    }
    
    var requestsSpec = []testRequestSpec{
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java

        /**
         * Context type
         */
        public static final int NEGO_CTX_PREAUTH_TYPE = 0x1;
    
        /**
         * SHA-512
         */
        public static final int HASH_ALGO_SHA512 = 0x1;
    
        private int[] hashAlgos;
        private byte[] salt;
    
    
        /**
         * 
         * @param config
         * @param hashAlgos
         * @param salt
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  6. src/runtime/preempt_arm64.s

    	LDP 88(RSP), (R10, R11)
    	LDP 72(RSP), (R8, R9)
    	LDP 56(RSP), (R6, R7)
    	LDP 40(RSP), (R4, R5)
    	LDP 24(RSP), (R2, R3)
    	LDP 8(RSP), (R0, R1)
    	MOVD 496(RSP), R30
    	MOVD -8(RSP), R29
    	MOVD (RSP), R27
    	ADD $512, RSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 01:58:56 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndECDSAGiven

    00000220  fb 33 24 a1 b3 0a 7c 0f  00 e6 1a 06 2b 9f 1e 1f  |.3$...|.....+...|
    00000230  cc b8 b2 80 90 e7 86 20  32 40 06 ac 1b b0 41 b7  |....... 2@....A.|
    00000240  0d 9c 4c 41 90 01 0b 7a  7e b2 b2 46 39 dc 51 25  |..LA...z~..F9.Q%|
    00000250  98 e0 b9 ec 36 fc 08 64  f0 51 2a 41 e1 e5 61 3d  |....6..d.Q*A..a=|
    00000260  fc 07 c1 9b 1f 6f 48 d4  1f 46 bf 14 e6 92 61 1a  |.....oH..F....a.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		if typ == RotateRightExt {
    			return Rm
    		}
    		return RegShift{Rm, typ, count}
    
    	case arg_R_shift_R:
    		Rm := Reg(x & (1<<4 - 1))
    		Rs := Reg((x >> 8) & (1<<4 - 1))
    		typ := Shift((x >> 5) & (1<<2 - 1))
    		return RegShiftReg{Rm, typ, Rs}
    
    	case arg_R_shift_imm:
    		Rm := Reg(x & (1<<4 - 1))
    		typ, count := decodeShift(x)
    		if typ == ShiftLeft && count == 0 {
    			return Reg(Rm)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                optList.sort(new OptionComparator());
                return optList;
            }
        }
    
        String getOptionsAsHtml() {
            StringBuilder sb = new StringBuilder(512);
            boolean odd = true;
            sb.append(
                    "<table border='1' class='zebra-striped'><tr class='a'><th><b>Options</b></th><th><b>Description</b></th></tr>");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/net/http/sniff.go

    import (
    	"bytes"
    	"encoding/binary"
    )
    
    // The algorithm uses at most sniffLen bytes to make its decision.
    const sniffLen = 512
    
    // DetectContentType implements the algorithm described
    // at https://mimesniff.spec.whatwg.org/ to determine the
    // Content-Type of the given data. It considers at most the
    // first 512 bytes of data. DetectContentType always returns
    // a valid MIME type: if it cannot determine a more specific one, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top