Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for unprotect (0.19 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/encode.go

    	// minSize is the minimum table size set by
    	// SetMaxDynamicTableSize after the previous Header Table Size
    	// Update.
    	minSize uint32
    	// maxSizeLimit is the maximum table size this encoder
    	// supports. This will protect the encoder from too large
    	// size.
    	maxSizeLimit uint32
    	// tableSizeUpdate indicates whether "Header Table Size
    	// Update" is required.
    	tableSizeUpdate bool
    	w               io.Writer
    	buf             []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
      // Join an existing circle.
      void join(linked_ptr_internal const* ptr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

             * InterruptibleChannel and JavaLangAccess.blockedOn(Thread, Interruptible), it isn't
             * predictable what work might be done. (e.g., close a file and flush buffers to disk). To
             * protect ourselves from this, we park ourselves and tell our interrupter that we did so.
             */
            if (state == PARKED || compareAndSet(state, PARKED)) {
              // Interrupting Cow Says:
              //  ______
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    // The mergedVersionSpec is only created on instantiation and is never
    // changed. crdCache is a cached.Replaceable and updates are thread
    // safe. Thus, no lock is needed to protect this struct.
    type specCache struct {
    	crdCache          cached.LastSuccess[*apiextensionsv1.CustomResourceDefinition]
    	mergedVersionSpec cached.Value[*spec.Swagger]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
      // Join an existing circle.
      void join(linked_ptr_internal const* ptr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/gc/gc_admission.go

    type gcPermissionsEnforcement struct {
    	*admission.Handler
    
    	authorizer authorizer.Authorizer
    
    	restMapper meta.RESTMapper
    
    	// items in this whitelist are ignored upon admission.
    	// any item in this list must protect against ownerRef mutations
    	// via strategy enforcement.
    	whiteList []whiteListItem
    }
    
    var _ admission.ValidationInterface = &gcPermissionsEnforcement{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    //   * increased security as plugins will not be able to alter function table
    //     after loading up. Thus, malicious plugins can't alter functionality to
    //     probe for gadgets inside core TensorFlow. We can even protect the area
    //     of memory where the copies reside to not allow any more writes to it
    //     after all copies are created.
    template <typename T>
    static std::unique_ptr<const T> CopyToCore(const T* plugin_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. src/net/rpc/client.go

    //
    // The read and write halves of the connection are serialized independently,
    // so no interlocking is required. However each half may be accessed
    // concurrently so the implementation of conn should protect against
    // concurrent reads or concurrent writes.
    func NewClient(conn io.ReadWriteCloser) *Client {
    	encBuf := bufio.NewWriter(conn)
    	client := &gobClientCodec{conn, gob.NewDecoder(conn), gob.NewEncoder(encBuf), encBuf}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // This API is never server served.  It is used for outbound requests from apiservers.  This will ensure it never gets served accidentally
    // and having the generator against this group will protect future APIs which may be served.
    // +k8s:prerelease-lifecycle-gen:replacement=admission.k8s.io,v1,AdmissionReview
    
    // AdmissionReview describes an admission review request/response.
    type AdmissionReview struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_darwin.go

    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Mlock(b []byte) (err error)
    //sys	Mlockall(flags int) (err error)
    //sys	Mprotect(b []byte, prot int) (err error)
    //sys	msync(b []byte, flags int) (err error)
    //sys	Munlock(b []byte) (err error)
    //sys	Munlockall() (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top