Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 755 for REGISTERS (0.12 sec)

  1. src/cmd/internal/obj/s390x/a.out.go

    	NREG   = 16 // number of general purpose registers
    	NFREG  = 16 // number of floating point registers
    )
    
    const (
    	// General purpose registers (GPRs).
    	REG_R0 = obj.RBaseS390X + iota
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    
    	// Floating point registers (FPRs).
    	REG_F0
    	REG_F1
    	REG_F2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/register.go

    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes registers known types to the given scheme
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&KubeSchedulerConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 16:52:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/apis/config/register.go

    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes registers known types to the given scheme
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&KubeletConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 18:44:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/rt0_freebsd_arm64.s

    	MOVD	0(R0), R0	// argc
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_freebsd_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_freebsd_lib_argc<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/BuildIncluder.java

     */
    @ServiceScope(Scope.Build.class)
    public interface BuildIncluder {
        /**
         * Registers an included build of the current build. An included build may provide plugins and libraries to this build and all other builds in the tree.
         */
        CompositeBuildParticipantBuildState includeBuild(IncludedBuildSpec includedBuildSpec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubelet/app/options/globalflags.go

    	"fmt"
    	"os"
    	"strings"
    
    	"github.com/spf13/pflag"
    
    	// libs that provide registration functions
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/version/verflag"
    )
    
    // AddGlobalFlags explicitly registers flags that libraries (glog, verflag, etc.) register
    // against the global flagsets from "flag" and "github.com/spf13/pflag".
    // We do this in order to prevent unwanted flags from leaking into the Kubelet's flagset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    	a.stopCh = stopCh
    }
    
    // SetExternalKubeClientSet registers the client into QuotaAdmission
    func (a *QuotaAdmission) SetExternalKubeClientSet(client kubernetes.Interface) {
    	a.quotaAccessor.client = client
    }
    
    // SetExternalKubeInformerFactory registers an informer factory into QuotaAdmission
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. src/runtime/rt0_netbsd_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_netbsd_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_netbsd_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)
Back to top