Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for NOR (0.04 sec)

  1. src/crypto/tls/handshake_server_test.go

    				TLS_CHACHA20_POLY1305_SHA256,
    				TLS_AES_128_GCM_SHA256,
    			},
    			serverHasAESGCM: true,
    			expectedCipher:  TLS_CHACHA20_POLY1305_SHA256,
    		},
    		{
    			name: "neither server nor client have hardware AES (pick ChaCha)",
    			clientCiphers: []uint16{
    				TLS_CHACHA20_POLY1305_SHA256,
    				TLS_AES_128_GCM_SHA256,
    			},
    			serverHasAESGCM: false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	err = readTransfer(req, b)
    	if err != nil {
    		return nil, err
    	}
    
    	if req.isH2Upgrade() {
    		// Because it's neither chunked, nor declared:
    		req.ContentLength = -1
    
    		// We want to give handlers a chance to hijack the
    		// connection, but we need to prevent the Server from
    		// dealing with the connection further if it's not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    				Message: "hello world",
    			},
    			DetachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    		},
    	}, {
    		// VolumeAttachmentSource with no PersistentVolumeName nor InlineSpec
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec: storage.VolumeAttachmentSpec{
    			Attacher: "myattacher",
    			NodeName: "node",
    			Source:   storage.VolumeAttachmentSource{},
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    	// received by Conn.readRecord. That is, records that neither advance the
    	// handshake, nor deliver application data. Protected by in.Mutex.
    	retryCount int
    
    	// activeCall indicates whether Close has been call in the low bit.
    	// the rest of the bits are the number of goroutines in Conn.Write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - plugins (both project and settings plugins)
    - artifacts resolved using the advanced dependency resolution APIs
    
    Gradle will _not_ verify changing dependencies (in particular `SNAPSHOT` dependencies) nor locally produced artifacts (typically jars produced during the build itself) as by nature their checksums and signatures would always change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    }
    
    // SchemaHas recursively traverses the Schema and calls the `pred`
    // predicate to see if the schema contains specific values.
    //
    // The predicate MUST NOT keep a copy of the json schema NOR modify the
    // schema.
    func SchemaHas(s *apiextensions.JSONSchemaProps, pred func(s *apiextensions.JSONSchemaProps) bool) bool {
    	if s == nil {
    		return false
    	}
    
    	if pred(s) {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Servers that do not implement bookmarks may ignore this flag and
      // bookmarks are sent at the server's discretion. Clients should not
      // assume bookmarks are returned at any specific interval, nor may they
      // assume the server will send any BOOKMARK event during a session.
      // If this is not a watch, this field is ignored.
      // +optional
      optional bool allowWatchBookmarks = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Servers that do not implement bookmarks may ignore this flag and
      // bookmarks are sent at the server's discretion. Clients should not
      // assume bookmarks are returned at any specific interval, nor may they
      // assume the server will send any BOOKMARK event during a session.
      // If this is not a watch, this field is ignored.
      // +optional
      optional bool allowWatchBookmarks = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // is stored at the end of a span for small objects and is unrolled at
    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top