Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for overlap (0.15 sec)

  1. src/crypto/tls/conn.go

    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])
    	payload := record[recordHeaderLen:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // '*/scale' means all scale subresources.
      // '*/*' means all resources and their subresources.
      //
      // If wildcard is present, the validation rule will ensure resources do not
      // overlap with each other.
      //
      // Depending on the enclosing object, subresources might not be allowed.
      // Required.
      // +listType=atomic
      repeated string resources = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                 * It is invalid for the source path to be a child of the destination
                 * path or visa versa.
                 */
                if ( this.fileLocator.overlaps(dest.getLocator()) ) {
                    throw new SmbException("Source and destination paths overlap.");
                }
    
                WriterThread w = new WriterThread();
                w.setDaemon(true);
    
                try {
                    w.start();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/crypto/tls/common.go

    const (
    	certTypeRSASign   = 1
    	certTypeECDSASign = 64 // ECDSA or EdDSA keys, see RFC 8422, Section 3.
    )
    
    // Signature algorithms (for internal signaling use). Starting at 225 to avoid overlap with
    // TLS 1.2 codepoints (RFC 5246, Appendix A.4.1), with which these have nothing to do.
    const (
    	signaturePKCS1v15 uint8 = iota + 225
    	signatureRSAPSS
    	signatureECDSA
    	signatureEd25519
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingConfigs: {
    		Code:           "InvalidArgument",
    		Description:    "Configurations overlap. Configurations on the same bucket cannot share a common event type.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedNotification: {
    		Code:           "UnsupportedNotification",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    // spans for the size of the object.
    //
    //go:nowritebarrier
    func scanobject(b uintptr, gcw *gcWork) {
    	// Prefetch object before we scan it.
    	//
    	// This will overlap fetching the beginning of the object with initial
    	// setup before we start scanning the object.
    	sys.Prefetch(b)
    
    	// Find the bits for b and the size of the object at b.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	// all controllers there will still be some replica instability. One way to handle this is
    	// by querying the store for all controllers that this rc overlaps, as well as all
    	// controllers that overlap this rc, and sorting them.
    	logger.Info("enqueueing job", "key", key, "delay", delay)
    	jm.queue.AddAfter(key, delay)
    }
    
    func (jm *Controller) enqueueOrphanPod(obj *v1.Pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// '*/scale' means all scale subresources.
    	// '*/*' means all resources and their subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// Depending on the enclosing object, subresources might not be allowed.
    	// Required.
    	// +listType=atomic
    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-task-with-patterns]"]
    ====
    
    A question you may ask yourself at this point is what happens when inclusion and exclusion patterns overlap? Which pattern wins? Here are the basic rules:
    
    * If there are no explicit inclusions or exclusions, everything is included
    * If at least one inclusion is specified, only files and directories matching the patterns are included
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top