Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for JLS (0.11 sec)

  1. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

       * Futures#addCallback addCallback()}.
       *
       * <p>Memory consistency effects: Actions in a thread prior to adding a listener <a
       * href="https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.5">
       * <i>happen-before</i></a> its execution begins, perhaps in another thread.
       *
       * <p>Guava implementations of {@code ListenableFuture} promptly release references to listeners
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/runtime/memmove_plan9_amd64.s

    	CMPQ	BX, $16
    	JBE	move_9through16
    
    /*
     * check and set for backwards
     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	MOVQ	BX, CX
    	SHRQ	$3, CX
    	ANDQ	$7, BX
    
    	REP;	MOVSQ
    	JMP	tail
    
    back:
    /*
     * check overlap
     */
    	MOVQ	SI, CX
    	ADDQ	BX, CX
    	CMPQ	CX, DI
    	JLS	forward
    
    /*
     * whole thing backwards has
     * adjusted addresses
     */
    	ADDQ	BX, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_386.s

    	MOVL	name+0(FP), BX
    	MOVL	mode+4(FP), CX
    	MOVL	perm+8(FP), DX
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+12(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT,$0
    	MOVL	$SYS_close, AX
    	MOVL	fd+0(FP), BX
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+4(FP)
    	RET
    
    TEXT runtime·write1(SB),NOSPLIT,$0
    	MOVL	$SYS_write, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_amd64.s

    	MOVL	mode+8(FP), DX
    	MOVL	perm+12(FP), R10
    	MOVL	$SYS_openat, AX
    	SYSCALL
    	CMPQ	AX, $0xfffffffffffff001
    	JLS	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT,$0-12
    	MOVL	fd+0(FP), DI
    	MOVL	$SYS_close, AX
    	SYSCALL
    	CMPQ	AX, $0xfffffffffffff001
    	JLS	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+8(FP)
    	RET
    
    TEXT runtime·write1(SB),NOSPLIT,$0-28
    	MOVQ	fd+0(FP), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

       * Futures#addCallback addCallback()}.
       *
       * <p>Memory consistency effects: Actions in a thread prior to adding a listener <a
       * href="https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.5">
       * <i>happen-before</i></a> its execution begins, perhaps in another thread.
       *
       * <p>Guava implementations of {@code ListenableFuture} promptly release references to listeners
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ListenableFuture.java

       * Futures#addCallback addCallback()}.
       *
       * <p>Memory consistency effects: Actions in a thread prior to adding a listener <a
       * href="https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.5">
       * <i>happen-before</i></a> its execution begins, perhaps in another thread.
       *
       * <p>Guava implementations of {@code ListenableFuture} promptly release references to listeners
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

        return subtype;
      }
    
      /**
       * Returns true if this type is a supertype of the given {@code type}. "Supertype" is defined
       * according to <a
       * href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.5.1">the rules for type
       * arguments</a> introduced with Java generics.
       *
       * @since 19.0
       */
      public final boolean isSupertypeOf(TypeToken<?> type) {
        return type.isSubtypeOf(getType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

           * throw NoClassDefFoundError thereafter. This is the proper behavior according to the spec.
           * See https://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.4.2 (steps #11 and
           * #5).
           *
           * Note that that "first time" might happen in a test other than
           * testLexicographicalComparatorChoice!
           */
          return false;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeToken.java

        return subtype;
      }
    
      /**
       * Returns true if this type is a supertype of the given {@code type}. "Supertype" is defined
       * according to <a
       * href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.5.1">the rules for type
       * arguments</a> introduced with Java generics.
       *
       * @since 19.0
       */
      public final boolean isSupertypeOf(TypeToken<?> type) {
        return type.isSubtypeOf(getType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. src/runtime/memmove_386.s

    	JMP	nosse2
    #endif
    	CMPL	BX, $32
    	JBE	move_17through32
    	CMPL	BX, $64
    	JBE	move_33through64
    	CMPL	BX, $128
    	JBE	move_65through128
    
    nosse2:
    /*
     * check and set for backwards
     */
    	CMPL	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	// If REP MOVSB isn't fast, don't use it
    	CMPB	internal∕cpu·X86+const_offsetX86HasERMS(SB), $1 // enhanced REP MOVSB/STOSB
    	JNE	fwdBy4
    
    	// Check alignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
Back to top