Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 668 for 2047 (0.04 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. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (SRA  x (MOVDconst [val])) => (SRAI [int64(val&63)] x)
    (SRAW x (MOVDconst [val])) => (SRAIW [int64(val&31)] x)
    (SLT  x (MOVDconst [val])) && val >= -2048 && val <= 2047 => (SLTI  [val] x)
    (SLTU x (MOVDconst [val])) && val >= -2048 && val <= 2047 => (SLTIU [val] x)
    
    // Replace negated left rotation with right rotation.
    (ROL  x (NEG y)) => (ROR  x y)
    (ROLW x (NEG y)) => (RORW x y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	//     Some requirements regarding production and processing of the Warning
    	//     header fields have been relaxed, as it is not widely implemented.
    	//     Furthermore, the Warning header field no longer uses RFC 2047
    	//     encoding, nor does it allow multiple languages, as these aspects were
    	//     not implemented.
    	//
    	// Format is one of:
    	// warn-code warn-agent "warn-text"
    	// warn-code warn-agent "warn-text" "warn-date"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/RandomAccessFileTest.java

    /*
     * © 2017 AgNO3 Gmbh & Co. KG
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses('A', 'B')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20478")
        def "can detect deletion of class used as class type parameter"() {
            //executer.requireOwnGradleUserHomeDir()  //use when debugging to bypass cache
    
            source "interface Super <T, R> { T getResult(R r); }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top