Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 189 for valid (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			node: &node1,
    			wantPreFilterStatus: framework.NewStatus(
    				framework.UnschedulableAndUnresolvable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. 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)
  6. src/net/url/url_test.go

    	{"http://[fe80::%31]/", false},
    	{"http://[fe80::%31]:8080/", false},
    	{"http://[fe80::%31%25en0]/", false},
    	{"http://[fe80::%31%25en0]:8080/", false},
    
    	// These two cases are valid as textual representations as
    	// described in RFC 4007, but are not valid as address
    	// literals with IPv6 zone identifiers in URIs as described in
    	// RFC 6874.
    	{"http://[fe80::1%en0]/", false},
    	{"http://[fe80::1%en0]:8080/", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    //     and then look up its span, the span state must be monotonic.
    //
    // Setting mspan.state to mSpanInUse or mSpanManual must be done
    // atomically and only after all other span fields are valid.
    // Likewise, if inspecting a span is contingent on it being
    // mSpanInUse, the state should be loaded atomically and checked
    // before depending on other fields. This allows the garbage collector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    */
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    type Rule struct {
    	// APIGroups is the API groups the resources belong to. '*' is all groups.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	// +listType=atomic
    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. src/html/template/escape_test.go

    	"strings"
    	"testing"
    	"text/template"
    	"text/template/parse"
    )
    
    type badMarshaler struct{}
    
    func (x *badMarshaler) MarshalJSON() ([]byte, error) {
    	// Keys in valid JSON must be double quoted as must all strings.
    	return []byte("{ foo: 'not quite valid JSON' }"), nil
    }
    
    type goodMarshaler struct{}
    
    func (x *goodMarshaler) MarshalJSON() ([]byte, error) {
    	return []byte(`{ "<foo>": "O'Reilly" }`), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/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) {
    			if e != nil {
    				check.errorf(x, MismatchedTypes, invalidOp+"%s (mismatched types %s and %s)", e, x.typ, y.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top