Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for valid (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// of events we actually process to be bufferSize, each event of
    	// type watch.Added.
    	valid := true
    	invalidateCacheInterval := func() {
    		valid = false
    	}
    	once := sync.Once{}
    	indexValidator := func(index int) bool {
    		isValid := valid && (index >= cacher.watchCache.startIndex)
    		once.Do(invalidateCacheInterval)
    		return isValid
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    import (
    	v1 "k8s.io/api/admissionregistration/v1"
    	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 = v1.Rule
    
    // ScopeType specifies a scope for a Rule.
    type ScopeType = v1.ScopeType
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    		},
    		wantErr: true,
    	}, {
    		desc: "valid - TokenRequests has at most one token with empty string audience",
    		csiDriver: &storage.CSIDriver{
    			ObjectMeta: metav1.ObjectMeta{Name: driverName},
    			Spec: storage.CSIDriverSpec{
    				TokenRequests:     []storage.TokenRequest{{Audience: ""}},
    				RequiresRepublish: &notRequiresRepublish,
    			},
    		},
    	}, {
    		desc: "valid - TokenRequests has tokens with different audience",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    }
    
    // OCSPResponse returns the stapled OCSP response from the TLS server, if
    // any. (Only valid for client connections.)
    func (c *Conn) OCSPResponse() []byte {
    	c.handshakeMutex.Lock()
    	defer c.handshakeMutex.Unlock()
    
    	return c.ocspResponse
    }
    
    // VerifyHostname checks that the peer certificate chain is valid for
    // connecting to host. If so, it returns nil; if not, it returns an error
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            file.bytes = [0, 1, 2, 3] + file.readBytes().toList() as byte[]
        }
    
        private void writeLocalKeyring(SimpleKeyRing keyring, File target, Boolean valid) {
            if (valid == null) {
                return
            }
            if (valid) {
                keyring.writePublicKeyRingTo(target)
            } else {
                def differentKeyring = newKeyRing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top