Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for pvprotection (0.24 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    				inst.Prefix[i] = PrefixPN
    				break PredictLoop
    			case PrefixDS:
    				inst.Prefix[i] = PrefixPT
    				break PredictLoop
    			}
    		}
    	}
    
    	// The BND prefix is part of the Intel Memory Protection Extensions (MPX).
    	// A REPN applied to certain control transfers is a BND prefix to bound
    	// the range of possible destinations. There's surprisingly little documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool sslEnabled = 4;
    
      // protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.
      // +optional
      optional string protectionDomain = 5;
    
      // storagePool is the ScaleIO Storage Pool associated with the protection domain.
      // +optional
      optional string storagePool = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Flag to enable/disable SSL communication with Gateway, default false
    	// +optional
    	SSLEnabled bool
    	// The name of the ScaleIO Protection Domain for the configured storage.
    	// +optional
    	ProtectionDomain string
    	// The ScaleIO Storage Pool associated with the protection domain.
    	// +optional
    	StoragePool string
    	// Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"protectionDomain": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.",
    	"storagePool":      "storagePool is the ScaleIO Storage Pool associated with the protection domain.",
    	"storageMode":      "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top