Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for pvprotection (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Maven POM metadata can reference additional repositories.
    These will be _ignored_ by Gradle, which will only use the repositories declared in the build itself.
    
    NOTE: This is a reproducibility safe-guard but also a security protection.
    Without it, an updated version of a dependency could pull artifacts from anywhere into your build.
    
    [[sec:repository-types]]
    == Supported repository types
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    // in the .loader section and in the symbol table as an External Reference.
    // The symbol "s" is transformed to SXCOFFTOC to end up in .data section.
    // However, there is no writing protection on those symbols and
    // it might need to be added.
    // TODO(aix): Handles dynamic symbols without library.
    func (f *xcoffFile) adddynimpsym(ctxt *Link, s loader.Sym) {
    	// Check that library name is given.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top