Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Je (0.05 sec)

  1. src/crypto/subtle/xor_amd64.s

    	MOVB  (SI)(DX*1), DI
    	MOVB  (CX)(DX*1), AX
    	XORB  AX, DI
    	MOVB  DI, (BX)(DX*1)
    	TESTQ $7, DX           // AND 7 & len, if not zero jump to loop_1b.
    	JNZ   loop_1b
    	CMPQ  DX, $0           // if len is 0, ret.
    	JE    ret
    	TESTQ $15, DX          // AND 15 & len, if zero jump to aligned.
    	JZ    aligned
    
    not_aligned:
    	TESTQ $7, DX           // AND $7 & len, if not zero jump to loop_1b.
    	JNE   loop_1b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 18:14:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    // http://www.oocities.org/nodotus/hbglass.html
    // https://en.wikipedia.org/wiki/I_Can_Eat_Glass
    
    package sampler
    
    var glass = newText(`
    
    English: en: I can eat glass and it doesn't hurt me.
    French: fr: Je peux manger du verre, ça ne me fait pas mal.
    Spanish: es: Puedo comer vidrio, no me hace daño.
    
    `)
    -- glass_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  3. docs/de/docs/how-to/separate-openapi-schemas.md

    Bei Verwendung von **Pydantic v2** ist die generierte OpenAPI etwas genauer und **korrekter** als zuvor. 😎
    
    Tatsächlich gibt es in einigen Fällen sogar **zwei JSON-Schemas** in OpenAPI für dasselbe Pydantic-Modell für Eingabe und Ausgabe, je nachdem, ob sie **Defaultwerte** haben.
    
    Sehen wir uns an, wie das funktioniert und wie Sie es bei Bedarf ändern können.
    
    ## Pydantic-Modelle für Eingabe und Ausgabe
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/runtime/memclr_amd64.s

    tail:
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    	TESTQ	BX, BX
    	JEQ	_0
    	CMPQ	BX, $2
    	JBE	_1or2
    	CMPQ	BX, $4
    	JBE	_3or4
    	CMPQ	BX, $8
    	JB	_5through7
    	JE	_8
    	CMPQ	BX, $16
    	JBE	_9through16
    	CMPQ	BX, $32
    	JBE	_17through32
    	CMPQ	BX, $64
    	JBE	_33through64
    	CMPQ	BX, $128
    	JBE	_65through128
    	CMPQ	BX, $256
    	JBE	_129through256
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_386.s

    	MOVL	fn+0(FP), BX
    	MOVL	SP, BP	// save stack pointer
    
    	// SetLastError(0).
    	MOVL	$0, 0x34(FS)
    
    	MOVL	libcall_n(BX), CX
    
    	// Fast version, do not store args on the stack.
    	CMPL	CX, $0
    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/runtime/preempt_amd64.s

    	MOVQ R10, 64(SP)
    	MOVQ R11, 72(SP)
    	MOVQ R12, 80(SP)
    	MOVQ R13, 88(SP)
    	MOVQ R14, 96(SP)
    	MOVQ R15, 104(SP)
    	#ifdef GOOS_darwin
    	#ifndef hasAVX
    	CMPB internal∕cpu·X86+const_offsetX86HasAVX(SB), $0
    	JE 2(PC)
    	#endif
    	VZEROUPPER
    	#endif
    	MOVUPS X0, 112(SP)
    	MOVUPS X1, 128(SP)
    	MOVUPS X2, 144(SP)
    	MOVUPS X3, 160(SP)
    	MOVUPS X4, 176(SP)
    	MOVUPS X5, 192(SP)
    	MOVUPS X6, 208(SP)
    	MOVUPS X7, 224(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/memmove_plan9_386.s

    	// with some straightline code. The REP MOVSL instruction is really fast
    	// for large sizes. The cutover is approximately 1K.
    tail:
    	TESTL	BX, BX
    	JEQ	move_0
    	CMPL	BX, $2
    	JBE	move_1or2
    	CMPL	BX, $4
    	JB	move_3
    	JE	move_4
    	CMPL	BX, $8
    	JBE	move_5through8
    	CMPL	BX, $16
    	JBE	move_9through16
    
    /*
     * check and set for backwards
     */
    	CMPL	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/index.md

    Allerdings sollten Sie zuerst das **Tutorial – Benutzerhandbuch** lesen (was Sie hier gerade tun).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 12:11:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/runtime/memclr_386.s

    	// MOVOU seems always faster than REP STOSL.
    tail:
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    	TESTL	BX, BX
    	JEQ	_0
    	CMPL	BX, $2
    	JBE	_1or2
    	CMPL	BX, $4
    	JB	_3
    	JE	_4
    	CMPL	BX, $8
    	JBE	_5through8
    	CMPL	BX, $16
    	JBE	_9through16
    #ifdef GO386_softfloat
    	JMP	nosse2
    #endif
    	PXOR	X0, X0
    	CMPL	BX, $32
    	JBE	_17through32
    	CMPL	BX, $64
    	JBE	_33through64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. src/main/webapp/js/bootstrap.min.js

    </div></div>'}),on=l({},Xe.DefaultType,{content:"(string|element|function)"}),rn="fade",sn="show",an=".popover-header",ln=".popover-body",cn={HIDE:"hide"+Je,HIDDEN:"hidden"+Je,SHOW:"show"+Je,SHOWN:"shown"+Je,INSERTED:"inserted"+Je,CLICK:"click"+Je,FOCUSIN:"focusin"+Je,FOCUSOUT:"focusout"+Je,MOUSEENTER:"mouseenter"+Je,MOUSELEAVE:"mouseleave"+Je},hn=function(t){function i(){return t.apply(this,arguments)||this}!function(t,e){t.prototype=Object.create(e.prototype),(t.prototype.constructor=t).__proto__=e}(i,t);var...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
Back to top