Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 225 for DEC (0.05 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverPropertyExplicit.kt

        get() {
            <caret_context>return "foo"
        }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 280 bytes
    - Viewed (0)
  2. okhttp-brotli/build.gradle.kts

    project.applyOsgi(
      "Export-Package: okhttp3.brotli",
      "Automatic-Module-Name: okhttp3.brotli",
      "Bundle-SymbolicName: com.squareup.okhttp3.brotli"
    )
    
    dependencies {
      api(projects.okhttp)
      api(libs.brotli.dec)
      compileOnly(libs.findbugs.jsr305)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.conscrypt.openjdk)
      testImplementation(libs.junit)
      testImplementation(libs.kotlin.test.common)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 819 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverProperty.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:kotlin.Int
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun dec (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 12 08:47:28 UTC 2023
    - 881 bytes
    - Viewed (0)
  4. src/crypto/internal/boring/bbig/big.go

    )
    
    func Enc(b *big.Int) boring.BigInt {
    	if b == nil {
    		return nil
    	}
    	x := b.Bits()
    	if len(x) == 0 {
    		return boring.BigInt{}
    	}
    	return unsafe.Slice((*uint)(&x[0]), len(x))
    }
    
    func Dec(b boring.BigInt) *big.Int {
    	if b == nil {
    		return nil
    	}
    	if len(b) == 0 {
    		return new(big.Int)
    	}
    	x := unsafe.Slice((*big.Word)(&b[0]), len(b))
    	return new(big.Int).SetBits(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:28 UTC 2022
    - 603 bytes
    - Viewed (0)
  5. security/pkg/util/jwtutil.go

    	}
    
    	// Decode the second part.
    	claimBytes, err := DecodeJwtPart(parts[1])
    	if err != nil {
    		return nil, err
    	}
    	dec := json.NewDecoder(bytes.NewBuffer(claimBytes))
    
    	claims := make(map[string]any)
    	if err := dec.Decode(&claims); err != nil {
    		return nil, fmt.Errorf("failed to decode the JWT claims")
    	}
    	return claims, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverPropertyLabeled.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:kotlin.Int
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun dec (): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 12 08:47:28 UTC 2023
    - 881 bytes
    - Viewed (0)
  7. internal/bucket/replication/destination.go

    	return e.EncodeToken(xml.EndElement{Name: start.Name})
    }
    
    // UnmarshalXML - decodes XML data.
    func (d *Destination) UnmarshalXML(dec *xml.Decoder, start xml.StartElement) (err error) {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type destination Destination
    	dest := destination{}
    
    	if err := dec.DecodeElement(&dest, &start); err != nil {
    		return err
    	}
    	parsedDest, err := parseDestination(dest.Bucket)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/runtime/memclr_ppc64x.s

    	MOVD   $48, R17
    
    zero64:
    	STXVD2X VS32, (R3+R0)   // store 16 bytes
    	STXVD2X VS32, (R3+R8)
    	STXVD2X VS32, (R3+R16)
    	STXVD2X VS32, (R3+R17)
    	ADD     $64, R3
    	ADD     $-64, R4
    	BDNZ    zero64          // dec ctr, br zero64 if ctr not 0
    	SRDCC   $3, R4, R6	// remaining doublewords
    	BEQ     nozerolarge
    
    lt64gt8:
    	CMP	R4, $32
    	BLT	lt32gt8
    	MOVD	$16, R8
    	STXVD2X	VS32, (R3+R0)
    	STXVD2X	VS32, (R3+R8)
    	ADD	$-32, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/math/cmplx/asin.go

    // w = -i clog( iz + csqrt( 1 - z ) ).
    //
    // casin(z) = -i casinh(iz)
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10     10100       2.1e-15     3.4e-16
    //    IEEE      -10,+10     30000       2.2e-14     2.7e-15
    // Larger relative error can be observed for z near zero.
    // Also tested by csin(casin(z)) = z.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  10. src/net/mail/message.go

    			comment += p.s[:1]
    		}
    		p.s = p.s[1:]
    	}
    
    	return comment, depth == 0
    }
    
    func (p *addrParser) decodeRFC2047Word(s string) (word string, isEncoded bool, err error) {
    	dec := p.dec
    	if dec == nil {
    		dec = &rfc2047Decoder
    	}
    
    	// Substitute our own CharsetReader function so that we can tell
    	// whether an error from the Decode method was due to the
    	// CharsetReader (meaning the charset is invalid).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top