Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getm (0.03 sec)

  1. src/os/signal/doc.go

    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    SIGTTOU signal gets the system default behavior (these signals are
    used by the shell for job control). The SIGPROF signal is handled
    directly by the Go runtime to implement runtime.CPUProfile. Other
    signals will be caught but no action will be taken.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    	return true
    }
    
    // This is the goroutine that runs all of the finalizers.
    func runfinq() {
    	var (
    		frame    unsafe.Pointer
    		framecap uintptr
    		argRegs  int
    	)
    
    	gp := getg()
    	lock(&finlock)
    	fing = gp
    	unlock(&finlock)
    
    	for {
    		lock(&finlock)
    		fb := finq
    		finq = nil
    		if fb == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        def disableProblemsApiCheck() {
            enableProblemsApiCheck = false
        }
    
        def isProblemsApiCheckEnabled() {
            enableProblemsApiCheck
        }
    
        /**
         * Gets all problems collected by the Problems API.
         *
         * @return The list of collected problems
         * @throws IllegalStateException if the Problems API check is not enabled
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    	// TransitionTier name of transition storage class
    	TransitionTier = "transition-tier"
    )
    
    // LifecycleSys - Bucket lifecycle subsystem.
    type LifecycleSys struct{}
    
    // Get - gets lifecycle config associated to a given bucket name.
    func (sys *LifecycleSys) Get(bucketName string) (lc *lifecycle.Lifecycle, err error) {
    	lc, _, err = globalBucketMetadataSys.GetLifecycleConfig(bucketName)
    	return lc, err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    			pos++
    			lv.livenessMap.set(v, objw.StackMapIndex(idx))
    		}
    		if lv.allUnsafe || v.Op != ssa.OpClobber && lv.unsafePoints.Get(int32(v.ID)) {
    			lv.livenessMap.setUnsafeVal(v)
    		}
    	}
    	if lv.allUnsafe || lv.unsafeBlocks.Get(int32(b.ID)) {
    		lv.livenessMap.setUnsafeBlock(b)
    	}
    
    	// Reset livevars.
    	lv.livevars = lv.livevars[:0]
    }
    
    func (lv *liveness) enableClobber() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top