Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for valid (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // The security identifier (SID) structure is a variable-length
    // structure used to uniquely identify users or groups.
    type SID struct{}
    
    // StringToSid converts a string-format security identifier
    // SID into a valid, functional SID.
    func StringToSid(s string) (*SID, error) {
    	var sid *SID
    	p, e := UTF16PtrFromString(s)
    	if e != nil {
    		return nil, e
    	}
    	e = ConvertStringSidToSid(p, &sid)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    	if redirectURL != nil { // success_action_redirect is valid and set.
    		v := redirectURL.Query()
    		v.Add("bucket", objInfo.Bucket)
    		v.Add("key", objInfo.Name)
    		v.Add("etag", "\""+objInfo.ETag+"\"")
    		redirectURL.RawQuery = v.Encode()
    		writeRedirectSeeOther(w, redirectURL.String())
    		return
    	}
    
    	// Add checksum header.
    	if checksum != nil && checksum.Valid() {
    		hash.AddChecksumHeader(w, checksum.AsMap())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       * trick of throwing an exception in the middle of the construction of another exception. Hotspot
       * is fine with that.
       */
    
      /**
       * Ensures that {@code index} specifies a valid <i>element</i> in an array, list or string of size
       * {@code size}. An element index may range from zero, inclusive, to {@code size}, exclusive.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    		{"---", "", "", "", 0, ListObjectsInfo{}, BucketNameInvalid{Bucket: "---"}, false},
    		{"ad", "", "", "", 0, ListObjectsInfo{}, BucketNameInvalid{Bucket: "ad"}, false},
    		// Valid bucket names, but they do not exist (6-8).
    		{"volatile-bucket-1", "", "", "", 1000, ListObjectsInfo{}, BucketNotFound{Bucket: "volatile-bucket-1"}, false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Preconditions.java

       * trick of throwing an exception in the middle of the construction of another exception. Hotspot
       * is fine with that.
       */
    
      /**
       * Ensures that {@code index} specifies a valid <i>element</i> in an array, list or string of size
       * {@code size}. An element index may range from zero, inclusive, to {@code size}, exclusive.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // that should not be included within this rule.
    type IPBlock struct {
    	// CIDR is a string representing the IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    	CIDR string `json:"cidr" protobuf:"bytes,1,name=cidr"`
    	// Except is a slice of CIDRs that should not be included within an IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    	// Except values will be rejected if they are outside the CIDR range
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    	if x.mode == invalid {
    		return
    	}
    
    	if isComparison(op) {
    		check.comparison(x, &y, op, false)
    		return
    	}
    
    	if !Identical(x.typ, y.typ) {
    		// only report an error if we have valid types
    		// (otherwise we had an error reported elsewhere already)
    		if isValid(x.typ) && isValid(y.typ) {
    			var posn positioner = x
    			if e != nil {
    				posn = e
    			}
    			if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    			// Skip if entry is neither a directory not a valid volume name.
    			continue
    		}
    		volsInfo = append(volsInfo, VolInfo{
    			Name: pathutil.Clean(entry),
    		})
    	}
    	return volsInfo, nil
    }
    
    // StatVol - get volume info.
    func (s *xlStorage) StatVol(ctx context.Context, volume string) (vol VolInfo, err error) {
    	// Verify if volume is valid and it exists.
    	volumeDir, err := s.getVolDir(volume)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          input = rewriter.create<TF::PadOp>(op->getLoc(), pad_output_type, input,
                                             padding_const);
    
          // Set Conv padding to `VALID` since padding has been handled by Pad op.
          state.padding = rewriter.getStringAttr("VALID");
        }
        auto conv_op = static_cast<const ConcreteType *>(this)->createTFLOp(
            &state, rewriter, op->getLoc(), tf_op.getType(), input, filter, bias);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	}{
    		"never ran, not valid schedule, A": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   errorSchedule,
    			deadline:                   noDead,
    			jobCreationTime:            justAfterThePriorHour(),
    			now:                        justBeforeTheHour(),
    			expectedWarnings:           1,
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, not valid schedule, F": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top