Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for pvprotection (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if len(args) > 0 {
    		eventMessage = fmt.Sprintf(message, args...)
    	}
    	// this is a hack, but often the error from the runtime includes the containerID
    	// which kills our ability to deduplicate events.  this protection makes a huge
    	// difference in the number of unique events
    	if containerID != "" {
    		eventMessage = strings.Replace(eventMessage, containerID, container.Name, -1)
    	}
    	m.recorder.Event(ref, eventType, reason, eventMessage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	0xC2, 0xA2, 0x11, 0x16, 0x7A, 0xBB, 0x8C, 0x5E,
    	0x07, 0x9E, 0x09, 0xE2, 0xC8, 0xA8, 0x33, 0x9C,
    }
    
    const (
    	// downgradeCanaryTLS12 or downgradeCanaryTLS11 is embedded in the server
    	// random as a downgrade protection if the server would be capable of
    	// negotiating a higher version. See RFC 8446, Section 4.1.3.
    	downgradeCanaryTLS12 = "DOWNGRD\x01"
    	downgradeCanaryTLS11 = "DOWNGRD\x00"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    		// verification.
    		systemLax:     true,
    		errorCallback: expectHashError,
    	},
    	// EKULeaf tests use an unconstrained chain leading to a leaf certificate
    	// with an E-mail Protection EKU but not a Server Auth one, checking that
    	// the EKUs on the leaf are enforced.
    	{
    		name:          "EKULeaf",
    		leaf:          smimeLeaf,
    		intermediates: []string{smimeIntermediate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top