Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 755 for REGISTERS (0.22 sec)

  1. src/reflect/abi.go

    		panic("unknown type kind")
    	}
    	panic("unhandled register assignment path")
    }
    
    // assignIntN assigns n values to registers, each "size" bytes large,
    // from the data at [offset, offset+n*size) in memory. Each value at
    // [offset+i*size, offset+(i+1)*size) for i < n is assigned to the
    // next n integer registers.
    //
    // Bit i in ptrMap indicates whether the i'th value is a pointer.
    // n must be <= 8.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockState.java

         */
        enum Disposition { FAILED, FINISHED, RETRY }
    
        /**
         * Registers a resource lock to be rolled back if the transform associated with this resource lock state
         * fails.
         */
        void registerLocked(ResourceLock resourceLock);
    
        /**
         * Registers a resource lock that has been unlocked during the transform so that the coordination service can
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/a.out.go

    import (
    	"cmd/internal/obj"
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p loong64
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 // number of general registers
    	NFREG  = 32 // number of floating point registers
    )
    
    const (
    	REG_R0 = obj.RBaseLOONG64 + iota // must be a multiple of 32
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionContext.java

        /**
         * Returns the type currently being inspected.
         */
        ModelType<T> getType();
    
        /**
         * Registers a type that should be inspected.
         */
        <C> ModelSchemaExtractionContext<C> child(ModelType<C> type, String description);
    
        /**
         * Registers a type that should be inspected. The given action is invoked after the type has been inspected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

        def listenerManager = new DefaultListenerManager(Scope.BuildTree)
        def services = new DefaultServiceRegistry()
    
        def setup() {
            services.add(listenerManager)
        }
    
        def "automatically creates and registers stateful listener when first event is broadcast"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            services.addProvider(new ServiceRegistrationProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/tls_ppc64x.s

    // thread-local memory, for use after calling externally compiled
    // ppc64 code that overwrote those registers.
    //
    // This is never called directly from C code (it doesn't have to
    // follow the C ABI), but it may be called from a C context, where the
    // usual Go registers aren't set up.
    //
    // NOTE: _cgo_topofstack assumes this only clobbers g (R30), and R31.
    TEXT runtimeĀ·load_g(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_aix_ppc64.S

    	stdu	1, -296(1)
    
    	// Set up Go ABI constant registers
    	// Must match _cgo_reginit in runtime package.
    	xor 0, 0, 0
    
    	// Restore g pointer (r30 in Go ABI, which may have been clobbered by C)
    	mr	30, 4
    
    	// Call fn
    	mr	12, 3
    	mtctr	12
    	bctrl
    
    	addi	1, 1, 296
    	bl	restoreregs
    	ld	2, 40(1)
    	ld	0, 16(1)
    	mtlr	0
    	blr
    
    saveregs:
    	// Save callee-save registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/BinaryProvider.java

     * @param <T> The type of binary.
     */
    public interface BinaryProvider<T> extends Provider<T> {
        /**
         * Registers an action to execute to configure the binary. The action is executed only when the element is required.
         */
        void configure(Action<? super T> action);
    
        /**
         * Registers an action to execute when the binary has been configured. The action is executed only when the element is required.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/ExtensiblePolymorphicDomainObjectContainer.java

     *
     * @param <T> the (base) container element type
     */
    public interface ExtensiblePolymorphicDomainObjectContainer<T> extends PolymorphicDomainObjectContainer<T>, NamedDomainObjectFactoryRegistry<T> {
        /**
         * Registers a factory for creating elements of the specified type. Typically, the specified type
         * is an interface type.
         *
         * @param type the type of objects created by the factory
         * @param factory the factory to register
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 03 14:28:15 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/tls_s390x.s

    // thread-local memory, for use after calling externally compiled
    // s390x code that overwrote those registers.
    //
    // This is never called directly from C code (it doesn't have to
    // follow the C ABI), but it may be called from a C context, where the
    // usual Go registers aren't set up.
    //
    // NOTE: _cgo_topofstack assumes this only clobbers g (R13), R10 and R11.
    TEXT runtimeĀ·load_g(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 18:56:54 UTC 2016
    - 1.5K bytes
    - Viewed (0)
Back to top