Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,170 for Registers (0.25 sec)

  1. src/runtime/rt0_linux_arm64.s

    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_linux_lib(SB),NOSPLIT,$184
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(24)
    	SAVE_F8_TO_F15(104)
    
    	// Initialize g as null in case of using g later e.g. sigaction in cgo_sigaction.go
    	MOVD	ZR, g
    
    	MOVD	R0, _rt0_arm64_linux_lib_argc<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. pkg/controller/apis/config/v1alpha1/register.go

    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 06 10:42:02 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1alpha1/register.go

    	localSchemeBuilder = &kubeletconfigv1alpha1.SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 18:44:06 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. src/runtime/syscall_windows.go

    		// next even register and can be split across
    		// registers and the stack.
    		panic("compileCallback: argument size is larger than uintptr")
    	}
    	if k := t.Kind_ & abi.KindMask; GOARCH != "386" && (k == abi.Float32 || k == abi.Float64) {
    		// In fastcall, floating-point arguments in
    		// the first four positions are passed in
    		// floating-point registers, which we don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceRegistry.java

     * A registry of build services. You use this type to register service instances.
     *
     * <p>A registry is available using {@link Gradle#getSharedServices()}.</p>
     *
     * @since 6.1
     */
    public interface BuildServiceRegistry {
        /**
         * Returns the set of service registrations.
         */
        NamedDomainObjectSet<BuildServiceRegistration<?, ?>> getRegistrations();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 14:08:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_mipsx.S

     *
     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard MIPS O32 ABI, where $16-$23, $30, and $f20-$f31
     * are callee-save, so they must be saved explicitly, along with $31 (LR).
     */
    .globl crosscall1
    .set noat
    crosscall1:
    #ifndef __mips_soft_float
    	addiu	$29, $29, -88
    #else
    	addiu	$29, $29, -40 // For soft-float, no need to make room for FP registers
    #endif
    	sw	$31, 0($29)
    	sw	$16, 4($29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. pkg/apis/apiserverinternal/register.go

    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageVersion{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 08 21:34:55 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/a.out.go

    	/* compiler allocates register variables R3 up */
    	/* compiler allocates external registers R10 down */
    	REGEXT = REG_R10
    	/* these two registers are declared in runtime.h */
    	REGG = REGEXT - 0
    	REGM = REGEXT - 1
    
    	REGCTXT = REG_R7
    	REGTMP  = REG_R11
    	REGSP   = REG_R13
    	REGLINK = REG_R14
    	REGPC   = REG_R15
    
    	NFREG = 16
    	/* compiler allocates register variables F0 up */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/register.go

    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = v1.SchemeGroupVersion
    
    var (
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &v1.SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:47:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. pkg/controller/deployment/config/v1alpha1/register.go

    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top