Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 80386 (0.04 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
     Entry point address:               0x8048310
     Start of program headers:          52 (bytes into file)
     Start of section headers:          4400 (bytes into file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

        }
    
        public void test_encodeUrl_valid() {
            String url = "http://TEST.com/hoge/;jsessionid?p=id&test=テスト&u=18718&v=123%3d#test";
            String result = "http://TEST.com/hoge/;jsessionid?p=id&test=%E3%83%86%E3%82%B9%E3%83%88&u=18718&v=123%3d#test";
            assertEquals(result, htmlTransformer.encodeUrl(url, "UTF-8"));
    
            url = ".-*_:/+%=&?#[]@~!$'(),;";
            result = ".-*_:/+%=&?#[]@~!$'(),;";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. tests/integration/security/pass_through_filter_chain_test.go

    							plaintextSucceeds: true,
    							mtlsSucceeds:      false,
    						},
    					},
    				},
    				{
    					// There is only authN policy that enables mTLS by default and disables mTLS strict on port 8086 and 8088.
    					// The request should be denied on port 8085 and 8071.
    					name: "STRICT with DISABLE",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/simple-oauth2.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="82-85"
        {!> ../../../docs_src/security/tutorial003_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="83-86"
        {!> ../../../docs_src/security/tutorial003_an.py!}
        ```
    
    === "Python 3.10+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

       Cannot select module with conflict on capability 'org:blah:1.0' also provided by [org:foo:1.0(runtime)]""")
        }
    
        @ToBeImplemented("https://github.com/gradle/gradle/issues/8386")
        def "selects a variant with different attribute value but matching transform"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/simple-oauth2.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="82-85"
        {!> ../../../docs_src/security/tutorial003_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="83-86"
        {!> ../../../docs_src/security/tutorial003_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="78-81"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    	// 386:`SUBL\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[c] -= b
    	// 386:`ADDL\s[$]-15,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[d] -= 15
    	// 386:`DECL\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[b]--
    	// amd64:`DECQ\s64\([A-Z]+\)`
    	arr[8]--
    	// 386:"SUBL\t4"
    	// amd64:"SUBQ\t8"
    	return arr[0] - arr[1]
    }
    
    func SubFromConst(a int) int {
    	// ppc64x: `SUBC\tR[0-9]+,\s[$]40,\sR`
    	b := 40 - a
    	return b
    }
    
    func SubFromConstNeg(a int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. test/codegen/memops.go

    	// 386/sse2: `MOVSD\tX[0-9]+, 8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*[18]\)`
    	y[16*i+1] = t
    }
    
    func idxLoadPlusOp32(x []int32, i int) int32 {
    	s := x[0]
    	// 386: `ADDL\t4\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `ADDL\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s += x[i+1]
    	// 386: `SUBL\t8\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    000003f0  5b c0 e8 b4 42 eb ee 83  c2 ae 0d 28 99 48 46 a9  |[...B......(.HF.|
    00000400  64 38 60 59 c2 dc 5c 7b  16 03 03 00 14 78 72 cf  |d8`Y..\{.....xr.|
    00000410  ac 5d 53 7e 73 b1 6e e2  0a 8e 12 33 be 03 86 6a  |.]S~s.n....3...j|
    00000420  ce                                                |.|
    >>> Flow 9 (client to server)
    00000000  16 03 03 02 69 33 a1 bb  7d ff 23 ba ad dc a0 1e  |....i3..}.#.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/crypto/rsa/testdata/pss-vect.txt.bz2

    80 e9 82 7a bd 6e b7 a0 02 cb 54 11 f5 26 67 97 76 8f b8 e9 5a e4 0e 3e 8a 01 f3 5f f8 9e 56 c0 79 # p's CRT exponent dP: e2 47 cc e5 04 93 9b 8f 0a 36 09 0d e2 00 93 87 55 e2 44 4b 29 53 9a 7d a7 a9 02 f6 05 68 35 c0 db 7b 52 55 94 97 cf e2 c6 1a 80 86 d0 21 3c 47 2c 78 85 18 00 b1 71 f6 40 1d e2 e9 c2 75 6f 31 # q's CRT exponent dQ: b1 2f ba 75 78 55 e5 86 e4 6f 64 c3 8a 70 c6 8b 3f 54 8d 93 d7 87 b3 99 99 9d 4c 8f 0b bd 25 81 c2 1e 19 ed 00 18 a6 d5 d3 df 86 42 4b 3a bc ad 40 19 9d 31 49 5b 61...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
Back to top