Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,515 for 2047 (0.08 sec)

  1. src/net/mail/message_test.go

    				{
    					Name:    "John",
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 2047 "Q"-encoded ISO-8859-1 address.
    		{
    			`=?iso-8859-1?q?J=F6rg_Doe?= <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `Jörg Doe`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 2047 "Q"-encoded US-ASCII address. Dumb but legal.
    		{
    			`=?us-ascii?q?J=6Frg_Doe?= <******@****.***>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. src/mime/encodedword.go

    	"unicode/utf8"
    )
    
    // A WordEncoder is an RFC 2047 encoded-word encoder.
    type WordEncoder byte
    
    const (
    	// BEncoding represents Base64 encoding scheme as defined by RFC 2045.
    	BEncoding = WordEncoder('b')
    	// QEncoding represents the Q-encoding scheme as defined by RFC 2047.
    	QEncoding = WordEncoder('q')
    )
    
    var (
    	errInvalidWord = errors.New("mime: invalid RFC 2047 encoded-word")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/riscv64.s

    	ADDI	$2047, X5				// 9382f27f
    	ADDI	$-2048, X5				// 93820280
    	ADDI	$2048, X5				// 9382024093820240
    	ADDI	$-2049, X5				// 938202c09382f2bf
    	ADDI	$4094, X5				// 9382f27f9382f27f
    	ADDI	$-4096, X5				// 9382028093820280
    	ADDI	$4095, X5				// b71f00009b8fffffb382f201
    	ADDI	$-4097, X5				// b7ffffff9b8fffffb382f201
    	ADDI	$2047, X5, X6				// 1383f27f
    	ADDI	$-2048, X5, X6				// 13830280
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/mime/quotedprintable/example_test.go

    package quotedprintable_test
    
    import (
    	"fmt"
    	"io"
    	"mime/quotedprintable"
    	"os"
    	"strings"
    )
    
    func ExampleNewReader() {
    	for _, s := range []string{
    		`=48=65=6C=6C=6F=2C=20=47=6F=70=68=65=72=73=21`,
    		`invalid escape: <b style="font-size: 200%">hello</b>`,
    		"Hello, Gophers! This symbol will be unescaped: =3D and this will be written in =\r\none line.",
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyResolutionEventsIntegrationTest.groovy

            when:
            run "resolveIt"
    
            then:
            output.count("before :things") == 1
            output.count("after :things") == 1
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2047")
        def "can access resolved files from afterResolve hook"() {
            given:
            file("thing.txt") << "stuff"
            buildFile << """
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/encoding/hex/example_test.go

    	// 00000020  20 6c 61 6e 67 75 61 67  65 2e 0a 57 65 20 65 6e  | language..We en|
    	// 00000030  63 6f 75 72 61 67 65 20  61 6c 6c 20 47 6f 20 75  |courage all Go u|
    	// 00000040  73 65 72 73 20 74 6f 20  73 75 62 73 63 72 69 62  |sers to subscrib|
    	// 00000050  65 20 74 6f 20 67 6f 6c  61 6e 67 2d 61 6e 6e 6f  |e to golang-anno|
    	// 00000060  75 6e 63 65 2e                                    |unce.|
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 10 21:40:16 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    			wantResult: WarningHeader{Code: 321, Agent: "-", Text: "text"},
    		},
    		// RFC 2047 decoding
    		{
    			name:       "ok, rfc 2047, iso-8859-1, q",
    			header:     `299 - "=?iso-8859-1?q?this=20is=20some=20text?="`,
    			wantResult: WarningHeader{Code: 299, Agent: `-`, Text: `this is some text`},
    		},
    		{
    			name:       "ok, rfc 2047, utf-8, b",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. src/net/mail/message.go

    	return (&addrParser{s: list}).parseAddressList()
    }
    
    // An AddressParser is an RFC 5322 address parser.
    type AddressParser struct {
    	// WordDecoder optionally specifies a decoder for RFC 2047 encoded-words.
    	WordDecoder *mime.WordDecoder
    }
    
    // Parse parses a single RFC 5322 address of the
    // form "Gogh Fir <******@****.***>" or "******@****.***".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. test/codegen/arithmetic.go

    	// arm/6:"AND",-".*udiv"
    	// arm/7:"BFC",-".*udiv",-"AND"
    	// ppc64x:"RLDICL"
    	return len(a) % 1024
    }
    
    func LenMod2(s string) int {
    	// 386:"ANDL\t[$]2047"
    	// amd64:"ANDL\t[$]2047"
    	// arm64:"AND\t[$]2047",-"SDIV"
    	// arm/6:"AND",-".*udiv"
    	// arm/7:"BFC",-".*udiv",-"AND"
    	// ppc64x:"RLDICL"
    	return len(s) % (4097 >> 1)
    }
    
    func CapDiv(a []int) int {
    	// 386:"SHRL\t[$]12"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/mime/encodedword_test.go

    		{"=?UTF-8?=", "=?UTF-8?="},
    		{"=?UTF-8?Q", "=?UTF-8?Q"},
    		{"=?UTF-8?Q?", "=?UTF-8?Q?"},
    		{"=?UTF-8?Q?=", "=?UTF-8?Q?="},
    		{"=?UTF-8?Q?A", "=?UTF-8?Q?A"},
    		{"=?UTF-8?Q?A?", "=?UTF-8?Q?A?"},
    		// Tests from RFC 2047
    		{"=?ISO-8859-1?Q?a?=", "a"},
    		{"=?ISO-8859-1?Q?a?= b", "a b"},
    		{"=?ISO-8859-1?Q?a?= =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a?=  =?ISO-8859-1?Q?b?=", "ab"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 7K bytes
    - Viewed (0)
Back to top