Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,170 for Registers (0.16 sec)

  1. pkg/apis/admissionregistration/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
    )
    
    // Adds the list of known types to scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:51 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/apis/discovery/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
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 21:50:00 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/register.go

    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    
    	localSchemeBuilder = &SchemeBuilder
    
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

    import org.gradle.launcher.daemon.protocol.Result;
    
    import javax.annotation.Nullable;
    import java.util.concurrent.TimeUnit;
    
    public interface DaemonConnection extends Stoppable {
        /**
         * Registers a handler for incoming client stdin. The handler is notified from at most one thread at a time.
         *
         * The following events trigger an end of input:
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/preempt.go

    		// unsafe, but it may limit asynchronous preemption.
    		//
    		// This may be a problem if we start using more
    		// registers. In that case, we should store registers
    		// in a context object. If we pre-allocate one per P,
    		// asyncPreempt can spill just a few registers to the
    		// stack, then grab its context object and spill into
    		// it. When it enters the runtime, it would allocate a
    		// new context for the P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/runtime/rt0_openbsd_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_openbsd_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_openbsd_lib_argc<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/runtime/asm_s390x.s

    // to the buffer space in R9.
    // It clobbers R10 (the temp register) and R1 (used by PLT stub).
    // It does not clobber any other general-purpose registers,
    // but may clobber others (e.g., floating point registers).
    TEXT gcWriteBarrier<>(SB),NOSPLIT,$96
    	// Save the registers clobbered by the fast path.
    	MOVD	R4, 96(R15)
    retry:
    	MOVD	g_m(g), R1
    	MOVD	m_p(R1), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. pkg/apis/authorization/v1/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: Sat Nov 09 16:45:37 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/vcs/SourceControl.java

         */
        void vcsMappings(Action<? super VcsMappings> configuration);
    
        /**
         * Returns the VCS mappings configuration.
         */
        VcsMappings getVcsMappings();
    
        /**
         * Registers a Git repository that contains some components that should be used as source dependencies.
         *
         * <p>A Git repository can safely be registered multiple times.</p>
         *
         * @param url The URL of the Git repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  10. pkg/apis/certificates/v1/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, addConversionFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 04:50:01 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top