Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,071 for nack (0.07 sec)

  1. releasenotes/notes/50060.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 50060
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 22:19:44 UTC 2024
    - 225 bytes
    - Viewed (0)
  2. src/runtime/signal_riscv64.go

    	// We arrange RA, and pc to pretend the panicking
    	// function calls sigpanic directly.
    	// Always save RA to stack so that panics in leaf
    	// functions are correctly handled. This smashes
    	// the stack frame but we're not going back there
    	// anyway.
    	sp := c.sp() - goarch.PtrSize
    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.ra()
    
    	pc := gp.sigpc
    
    	if shouldPushSigpanic(gp, pc, uintptr(c.ra())) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/signal_mipsx.go

    	// function calls sigpanic directly.
    	// Always save LINK to stack so that panics in leaf
    	// functions are correctly handled. This smashes
    	// the stack frame but we're not going back there
    	// anyway.
    	sp := c.sp() - sys.MinFrameSize
    	c.set_sp(sp)
    	*(*uint32)(unsafe.Pointer(uintptr(sp))) = c.link()
    
    	pc := gp.sigpc
    
    	if shouldPushSigpanic(gp, pc, uintptr(c.link())) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. pkg/test/echo/server/endpoint/hbone.go

    		// Store the actual listening port back to the argument.
    		c.Port.Port = port
    	} else {
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddress(c.ListenerIP, c.Port.Port)
    		// Store the actual listening port back to the argument.
    		c.Port.Port = port
    	}
    	if err != nil {
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. internal/bpool/bpool.go

    	}
    	return
    }
    
    // Put returns the given Buffer to the BytePool.
    func (bp *BytePoolCap) Put(b []byte) {
    	if bp == nil {
    		return
    	}
    	select {
    	case bp.c <- b:
    		// buffer went back into pool
    	default:
    		// buffer didn't go back into pool, just discard
    	}
    }
    
    // Width returns the width of the byte arrays in this pool.
    func (bp *BytePoolCap) Width() (n int) {
    	if bp == nil {
    		return 0
    	}
    	return bp.w
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. test/typeparam/issue50109.go

    	// original type when retrieved.
    	// Failure in issue doesn't happen with 'any' replaced by 'interface{}'
    	c := NewAnyCacher[any]()
    
    	myStruct := &MyStruct{"MySuperStruct"}
    
    	c.Set("MySuperStruct", myStruct)
    
    	myRawCachedStruct, found := c.Get("MySuperStruct")
    
    	if found {
    		// Casting the retrieved object back to its original type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/naming/from_stack.go

    */
    
    package naming
    
    import (
    	"fmt"
    	"regexp"
    	goruntime "runtime"
    	"runtime/debug"
    	"strconv"
    	"strings"
    )
    
    // GetNameFromCallsite walks back through the call stack until we find a caller from outside of the ignoredPackages
    // it returns back a shortpath/filename:line to aid in identification of this reflector when it starts logging
    func GetNameFromCallsite(ignoredPackages ...string) string {
    	name := "????"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 01:31:42 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_mips64x.go

    // according to Linux source code it should be __vdso_clock_gettime instead.
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    // initialize to fall back to syscall
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 850 bytes
    - Viewed (0)
  9. src/runtime/mem.go

    // hint to the OS that it would be more efficient to back this memory region
    // with pages of a larger size transparently.
    func sysHugePage(v unsafe.Pointer, n uintptr) {
    	sysHugePageOS(v, n)
    }
    
    // sysNoHugePage does not transition memory regions, but instead provides a
    // hint to the OS that it would be less efficient to back this memory region
    // with pages of a larger size transparently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         *
         * FINISHED - All locks were acquired, release the state lock
         * FAILED - One or more locks were not acquired, roll back any locks that were acquired and release the state lock
         * RETRY - One or more locks were not acquired, roll back any locks that were acquired and block waiting for the
         * state to change, then run the transform again
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top