Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 216 for unprotect (0.15 sec)

  1. src/internal/syscall/windows/memory_windows.go

    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    	// The access protection of the pages in the region.
    	Protect uint32
    	// The type of pages in the region.
    	Type uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	state       status        // represent the state of the variable
    	generation  int           // represent the number of times we have transtioned to ready
    	lock        sync.RWMutex  // protect the state and generation variables
    	restartLock sync.Mutex    // protect the transition from ready to pending where the channel is recreated
    	waitCh      chan struct{} // blocks until is ready or stopped
    }
    
    func newReady() *ready {
    	return &ready{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. internal/dsync/utils.go

    package dsync
    
    import (
    	"math/rand"
    	"time"
    )
    
    func backoffWait(min, unit, cap time.Duration) func(*rand.Rand, uint) time.Duration {
    	if unit > time.Hour {
    		// Protect against integer overflow
    		panic("unit cannot exceed one hour")
    	}
    	return func(r *rand.Rand, attempt uint) time.Duration {
    		sleep := min
    		sleep += unit * time.Duration(attempt)
    		if sleep > cap {
    			sleep = cap
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 13 15:42:21 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    	fs.BoolVar(&o.EnableContentionProfiling, "contention-profiling", o.EnableContentionProfiling,
    		"Enable block profiling, if profiling is enabled")
    	fs.StringVar(&o.DebugSocketPath, "debug-socket-path", o.DebugSocketPath,
    		"Use an unprotected (no authn/authz) unix-domain socket for profiling with the given path")
    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue8606b.go

    	bad2 := "foo"
    
    	p := syscall.Getpagesize()
    	b, err := syscall.Mmap(-1, 0, p, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_ANON|syscall.MAP_PRIVATE)
    	if err != nil {
    		panic(err)
    	}
    	err = syscall.Mprotect(b, syscall.PROT_NONE)
    	if err != nil {
    		panic(err)
    	}
    	// write inaccessible pointers as the data fields of bad1 and bad2.
    	(*reflect.StringHeader)(unsafe.Pointer(&bad1)).Data = uintptr(unsafe.Pointer(&b[0]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/MutationGuards.java

            @Override
            public <T> void assertMutationAllowed(String methodName, T target, Class<T> targetType) {
                // do nothing
            }
        };
    
        /**
         * Returns the identity mutation guard. It protect and do nothing.
         */
        public static MutationGuard identity() {
            return IDENTITY_MUTATION_GUARD;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    // This specific handler is meant to "protect" requests that arrive before the paths and handlers are fully initialized.
    func New(serializer runtime.NegotiatedSerializer, isMuxAndDiscoveryCompleteFn func(ctx context.Context) bool) *Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/defs_windows.go

    	hevent       *byte
    }
    
    type memoryBasicInformation struct {
    	baseAddress       uintptr
    	allocationBase    uintptr
    	allocationProtect uint32
    	regionSize        uintptr
    	state             uint32
    	protect           uint32
    	type_             uint32
    }
    
    // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_osversioninfow
    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/erasure/README.md

    ## Why is Erasure Code useful?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/conditional-openapi.md

    ## About security, APIs, and docs
    
    Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API.
    
    That doesn't add any extra security to your API, the *path operations* will still be available where they are.
    
    If there's a security flaw in your code, it will still exist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top