Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for pinned (0.17 sec)

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

    	if err != nil {
    		return false
    	}
    	return outLen == uint32(unsafe.Sizeof(isElevated)) && isElevated != 0
    }
    
    // GetLinkedToken returns the linked token, which may be an elevated UAC token.
    func (token Token) GetLinkedToken() (Token, error) {
    	var linkedToken Token
    	var outLen uint32
    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. .bazelrc

    # TF now has `cc_shared_library` targets, so it needs the experimental flag
    # TODO(rostam): Remove when `cc_shared_library` is enabled by default
    build --experimental_cc_shared_library
    
    # cc_shared_library ensures no library is linked statically more than once.
    build --experimental_link_static_libraries_once=false
    
    # Prevent regressions on those two incompatible changes
    # TODO: remove those flags when they are flipped in the default Bazel version TF uses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      """Parse the input source module and emit the TFR functions."""
    
      # Load the op library so the op is added to the op registry. This is
      # required when the op cc_library couldn't be statically linked in open
      # source.
      # This is a no op if the op shared library couldn't be found in the same
      # directory of the op Python API.
      # TODO(fengliuai): make the .so file path configurable.
      if op_libraries:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    	// indefinitely.
    	forEachP(waitReasonFlushProcCaches, func(pp *p) {
    		pp.mcache.prepareForSweep()
    		if pp.status == _Pidle {
    			systemstack(func() {
    				lock(&mheap_.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	if v {
    		l.attrOnList.Set(i)
    	} else {
    		l.attrOnList.Unset(i)
    	}
    }
    
    // AttrLocal returns true for symbols that are only visible within the
    // module (executable or shared library) being linked. This attribute
    // is applied to thunks and certain other linker-generated symbols.
    func (l *Loader) AttrLocal(i Sym) bool {
    	return l.attrLocal.Has(i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	prototype := *(**ptrType)(unsafe.Pointer(&iptr))
    	pp := *prototype
    
    	pp.Str = resolveReflectName(newName(s, "", false, false))
    	pp.PtrToThis = 0
    
    	// For the type structures linked into the binary, the
    	// compiler provides a good hash of the string.
    	// Create a good hash for the new string by using
    	// the FNV-1 hash's mixing function to combine the
    	// old hash and the new "*".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
       * class, since it's in a separate artifact that we planned to release only a single version of.
       */
      @CheckForNull
      protected final Throwable tryInternalFastPathGetFailure() {
        if (this instanceof Trusted) {
          Object obj = value;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
       * class, since it's in a separate artifact that we planned to release only a single version of.
       */
      @CheckForNull
      protected final Throwable tryInternalFastPathGetFailure() {
        if (this instanceof Trusted) {
          Object obj = value;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. pilot/pkg/model/sidecar_test.go

    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    					// Ports should not be merged even though virtual service will select the service with 7443
    					// as ns1 comes before ns2, because 8000 was already picked explicitly and is in different namespace
    					Ports: port8000,
    				},
    				{
    					Hostname: "baz.svc.cluster.local",
    					Ports:    port7443,
    				},
    			},
    			nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		Description:    "Your key is too long",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsignedHeaders: {
    		Code:           "AccessDenied",
    		Description:    "There were headers present in the request which were not signed",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidQueryParams: {
    		Code:           "AuthorizationQueryParametersError",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top