Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for exit2 (0.04 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    		return true
    	}
    	if typ.IsInteger() {
    		return typ.Size() <= b.Func.Config.RegSize
    	}
    	return false
    }
    
    // needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
    func needRaceCleanup(sym *AuxCall, v *Value) bool {
    	f := v.Block.Func
    	if !f.Config.Race {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    }
    
    func error_Eventfd(initval uint, flags int) (fd int, err error) {
    	fd = -1
    	err = ENOSYS
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Exit(code int) {
    	runtime.EnterSyscall()
    	CallLeFuncWithErr(GetZosLibVec()+SYS_EXIT<<4, uintptr(code))
    	runtime.ExitSyscall()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	// Acquire a lock to ensure we don't concurrently initialize the same PushContext.
    	// If this does happen, one thread will block then exit early from InitDone=true
    	ps.initializeMutex.Lock()
    	defer ps.initializeMutex.Unlock()
    	if ps.InitDone.Load() {
    		return nil
    	}
    
    	ps.Mesh = env.Mesh()
    	ps.Networks = env.MeshNetworks()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top