Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for pvprotection (0.27 sec)

  1. cmd/generic-handlers.go

    func addCustomHeadersMiddleware(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		header := w.Header()
    		header.Set("X-XSS-Protection", "1; mode=block")                                // Prevents against XSS attacks
    		header.Set("X-Content-Type-Options", "nosniff")                                // Prevent mime-sniff
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    }
    
    // processRequest handles one discovery request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    // protection. Original code avoided the mutexes by doing both 'push' and 'process requests' in same thread.
    func (s *DiscoveryServer) processRequest(req *discovery.DiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    		c.sendAlert(alertHandshakeFailure)
    		return errors.New("tls: client does not support uncompressed connections")
    	}
    
    	hs.hello.random = make([]byte, 32)
    	serverRandom := hs.hello.random
    	// Downgrade protection canaries. See RFC 8446, Section 4.1.3.
    	maxVers := c.config.maxSupportedVersion(roleServer)
    	if maxVers >= VersionTLS12 && c.vers < maxVers || testingOnlyForceDowngradeCanary {
    		if c.vers == VersionTLS12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    We protect your rights with two steps: (1) copyright the software, and
    (2) offer you this license which gives you legal permission to copy,
    distribute and/or modify the software.
    
    Also, for each author's protection and ours, we want to make certain
    that everyone understands that there is no warranty for this free
    software. If the software is modified by someone else and passed on, we
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    }
    
    // processDeltaRequest is handling one request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    // protection. Original code avoided the mutexes by doing both 'push' and 'process requests' in same thread.
    func (s *DiscoveryServer) processDeltaRequest(req *discovery.DeltaDiscoveryRequest, con *Connection) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// which were allocated through a builtin controller.
    	// Reserved for use by Kubernetes, DRA driver controllers must
    	// use their own finalizer.
    	Finalizer = "dra.k8s.io/delete-protection"
    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.26
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. pkg/volume/util/util.go

    		}
    	}
    
    	return false
    }
    
    // GetReliableMountRefs calls mounter.GetMountRefs and retries on IsInconsistentReadError.
    // To be used in volume reconstruction of volume plugins that don't have any protection
    // against mounting a single volume on multiple nodes (such as attach/detach).
    func GetReliableMountRefs(mounter mount.Interface, mountPath string) ([]string, error) {
    	var paths []string
    	var lastErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption.go

    	// be more than enough.
    	// If the controller is running on a different node it is important that the two nodes have synced
    	// clock (via ntp for example). Otherwise PodDisruptionBudget controller may not provide enough
    	// protection against unwanted pod disruptions.
    	DeletionTimeout = 2 * time.Minute
    
    	// stalePodDisruptionTimeout sets the maximum time a pod can have a stale
    	// DisruptionTarget condition (the condition is present, but the Pod doesn't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (b PSAPI_WORKING_SET_EX_BLOCK) ShareCount() uint64 {
    	return b.intField(1, 3)
    }
    
    // Win32Protection is the memory protection attributes of the page. For a list of values, see
    // https://docs.microsoft.com/en-us/windows/win32/memory/memory-protection-constants
    func (b PSAPI_WORKING_SET_EX_BLOCK) Win32Protection() uint64 {
    	return b.intField(4, 11)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    		}
    		_, err = ctrl.storeVolumeUpdate(logger, volumeClone)
    		if err != nil {
    			return fmt.Errorf("persistent Volume Controller can't anneal migration finalizer: %v", err)
    		}
    		logger.V(2).Info("PV in-tree protection finalizer removed from volume", "volumeName", volume.Name)
    	}
    	return nil
    }
    
    // provisionClaim starts new asynchronous operation to provision a claim if
    // provisioning is enabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top