Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for defgh (0.04 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase16InvalidDecodings() {
        // These contain bytes not in the decodabet.
        assertFailsToDecode(base16(), "\n\n", "Unrecognized character: 0xa");
        assertFailsToDecode(base16(), "EFGH", "Unrecognized character: G");
        // Valid base16 strings always have an even length.
        assertFailsToDecode(base16(), "A", "Invalid input length 1");
        assertFailsToDecode(base16(), "ABC");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    				if !ok {
    					continue
    				}
    				if ts.Name.Name == t.Name {
    					return p.cgoType(ts.Type)
    				}
    			}
    		}
    		if def := typedef[t.Name]; def != nil {
    			if defgo, ok := def.Go.(*ast.Ident); ok {
    				switch defgo.Name {
    				case "complex64", "complex128":
    					// MSVC does not support the _Complex keyword
    					// nor the complex macro.
    					// Use GoComplex64 and GoComplex128 instead,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/regexp/exec_test.go

    	{"Easy1", "A[AB]B[BC]C[CD]D[DE]E[EF]F[FG]G[GH]H[HI]I[IJ]J$"},
    	{"Medium", "[XYZ]ABCDEFGHIJKLMNOPQRSTUVWXYZ$"},
    	{"Hard", "[ -~]*ABCDEFGHIJKLMNOPQRSTUVWXYZ$"},
    	{"Hard1", "ABCD|CDEF|EFGH|GHIJ|IJKL|KLMN|MNOP|OPQR|QRST|STUV|UVWX|WXYZ"},
    }
    
    var benchSizes = []struct {
    	name string
    	n    int
    }{
    	{"16", 16},
    	{"32", 32},
    	{"1K", 1 << 10},
    	{"32K", 32 << 10},
    	{"1M", 1 << 20},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cgroup_manager_linux.go

    	return strings.Replace(part, "_", "-", -1)
    }
    
    // cgroupName.ToSystemd converts the internal cgroup name to a systemd name.
    // For example, the name {"kubepods", "burstable", "pod1234-abcd-5678-efgh"} becomes
    // "/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod1234_abcd_5678_efgh.slice"
    // This function always expands the systemd name into the cgroupfs form. If only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		// Creating sequence of parts for same uploadID.
    		{bucketName, objectName, uploadIDs[0], 1, "abcd", "e2fc714c4727ee9395f324cd2e7f331f", int64(len("abcd"))},
    		{bucketName, objectName, uploadIDs[0], 2, "efgh", "1f7690ebdd9b4caf8fab49ca1757bf27", int64(len("efgh"))},
    		{bucketName, objectName, uploadIDs[0], 3, "ijkl", "09a0877d04abf8759f99adec02baf579", int64(len("abcd"))},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_amd64.s

    	VMOVDQU		(0*16)(digestPtr), state0	// load initial hash values and reorder
    	VMOVDQU		(1*16)(digestPtr), state1	// DCBA, HGFE -> ABEF, CDGH
    	PSHUFD		$0xb1, state0, state0		// CDAB
    	PSHUFD		$0x1b, state1, state1		// EFGH
    	VMOVDQA		state0, m4
    	PALIGNR		$8, state1, state0		// ABEF
    	PBLENDW		$0xf0, m4, state1		// CDGH
    	VMOVDQA		flip_mask<>(SB), shufMask
    	LEAQ		K256<>(SB), sha256Constants
    
    roundLoop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            body = "ABCD",
          ),
        )
        server.enqueue(
          MockResponse(
            headers = headersOf("cache-control", "max-age=60"),
            body = "EFGH",
          ),
        )
        val call1 = client.newCall(Request(server.url("/")))
        val response1 = call1.execute()
        assertThat(response1.body.source().readUtf8(2)).isEqualTo("AB")
        response1.body.close()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    	}
    	n := 0
    
    	// sign bit (a)
    	if h&0x80000000 != 0 {
    		n |= 1 << 7
    	}
    
    	// exp sign bit (b)
    	if h1 == 0x3fc00000 {
    		n |= 1 << 6
    	}
    
    	// rest of exp and mantissa (cd-efgh)
    	n |= int((h >> 16) & 0x3f)
    
    	//print("match %.8lux %.8lux %d\n", l, h, n);
    	return n
    }
    
    func nocache(p *obj.Prog) {
    	p.Optab = 0
    	p.From.Class = 0
    	if p.GetFrom3() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    	}
    	n := 0
    
    	// sign bit (a)
    	if h&0x80000000 != 0 {
    		n |= 1 << 7
    	}
    
    	// exp sign bit (b)
    	if h1 == 0x3fc00000 {
    		n |= 1 << 6
    	}
    
    	// rest of exp and mantissa (cd-efgh)
    	n |= int((h >> 16) & 0x3f)
    
    	//print("match %.8lux %.8lux %d\n", l, h, n);
    	return n
    }
    
    /* form offset parameter to SYS; special register number */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top